ソースを参照

Ignore link assuming stdscr is NULL

master
Arun Prakash Jana 5年前
コミット
4401dbe092
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: A75979F35C080412
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      src/nnn.c

+ 1
- 1
src/nnn.c ファイルの表示

@@ -2453,7 +2453,7 @@ static char *xreadline(const char *prefill, const char *prompt)
memmove(buf + pos - 1, buf + pos,
(len - pos) * WCHAR_T_WIDTH);
--pos, --len;
} while (buf[pos-1] != ' ' && buf[pos-1] != '/');
} while (buf[pos - 1] != ' ' && buf[pos - 1] != '/'); // NOLINT
continue;
case CONTROL('K'):
printprompt(prompt);


読み込み中…
キャンセル
保存