Skip to content
Snippets Groups Projects

daemon/io: tty recognizes command boundary

Merged Lukas Jezek requested to merge tty-command-boundary into master
All threads resolved!
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -497,7 +497,7 @@ void io_tty_process_input(uv_stream_t *stream, ssize_t nread, const uv_buf_t *bu
goto finish;
commands = newbuf;
}
commands[nread] = '\n';
commands[nread] = '\0';
}
const char *delim = args->quiet ? "" : "> ";
Loading