Kaynağa Gözat

Exit prompt on ^D at empty prompt

master
Arun Prakash Jana 5 yıl önce
ebeveyn
işleme
e3d80da2ad
Veri tabanında bu imza için bilinen anahtar bulunamadı GPG Anahtar Kimliği: A75979F35C080412
1 değiştirilmiş dosya ile 6 ekleme ve 2 silme
  1. +6
    -2
      src/nnn.c

+ 6
- 2
src/nnn.c Dosyayı Görüntüle

@@ -2412,8 +2412,12 @@ static char *xreadline(const char *prefill, const char *prompt)
case CONTROL('D'): case CONTROL('D'):
if (pos < len) if (pos < len)
++pos; ++pos;
else else if (!(pos || len)) { /* Exit on ^D at empty prompt */
continue; // fallthrough len = 0;
goto END;
} else
continue;
// fallthrough
case 127: // fallthrough case 127: // fallthrough
case '\b': /* rhel25 sends '\b' for backspace */ case '\b': /* rhel25 sends '\b' for backspace */
if (pos > 0) { if (pos > 0) {


||||||
x
 
000:0
Yükleniyor…
İptal
Kaydet