ソースを参照

Remove redundant calls

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

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

@@ -1499,7 +1499,6 @@ static char *xreadline(char *prefill, char *prompt)
case '\t': /* TAB breaks cursor position, ignore it */
continue;
case CONTROL('L'):
clearprompt();
printprompt(prompt);
len = pos = 0;
continue;
@@ -1510,7 +1509,6 @@ static char *xreadline(char *prefill, char *prompt)
pos = len;
continue;
case CONTROL('U'):
clearprompt();
printprompt(prompt);
memmove(buf, buf + pos, (len - pos) << 2);
len -= pos;


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