fix ctrl+d bug in getline keeping the buffer

This commit is contained in:
Adam D. Ruppe 2021-05-13 11:38:39 -04:00
parent 0b34c82758
commit 2c5255b486
1 changed files with 2 additions and 1 deletions

View File

@ -5951,7 +5951,8 @@ class LineGetter {
goto default;
if(line.length == 0)
eof = true;
goto case;
justHitTab = justKilled = false;
return false; // indicate end of line so it doesn't maintain the buffer thinking it was ctrl+enter
case '\r':
case '\n':
justHitTab = justKilled = false;