03norzsz.diff
来自「minicom源碼,用於Linux下Terminal的重要程序」· DIFF 代码 · 共 26 行
DIFF
26 行
--- minicom-2.00.0.orig/src/updown.c+++ minicom-2.00.0/src/updown.c@@ -352,6 +352,22 @@ (void) mcd(""); timer_update(); + /* return code == 1 if exeve failed, see #111060 et al */+ if (win && status == 0x0001) {+#if VC_MUSIC+ if (P_SOUND[0] == 'Y') {+ wprintf(win, _("\n Failure executing protocol. Press any key to continue..."));+ music();+ } else+ sleep(1);+#else+ /* MARK updated 02/17/94 - If there was no VC_MUSIC capability, */+ /* then at least make some beeps! */+ if (P_SOUND[0] == 'Y') wprintf(win, "\007\007\007");+ sleep(1);+#endif+ } else+ /* If we got interrupted, status != 0 */ if (win && (status & 0xFF00) == 0) { #if VC_MUSIC
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?