From: David Lawrence Ramsey Date: Wed, 19 May 2004 15:41:17 +0000 (+0000) Subject: comment fix: ^J should be Ctrl-J X-Git-Tag: v1.3.3~72 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=fd462b164e2c606ef0b052585e5a7afa2f0716b3;p=nano.git comment fix: ^J should be Ctrl-J git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1747 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- diff --git a/src/nano.c b/src/nano.c index ac55a3a4..370e8f06 100644 --- a/src/nano.c +++ b/src/nano.c @@ -3404,9 +3404,9 @@ int main(int argc, char *argv[]) * terminal mode, put the terminal in raw mode (read one character at * a time and don't interpret the special control keys), disable * translation of carriage return (^M) into newline (^J) so that we - * can tell the difference between the Enter key and ^J, and disable - * echoing of characters as they're typed. Finally, if we're in - * preserve mode, turn the flow control characters back on. */ + * can tell the difference between the Enter key and Ctrl-J, and + * disable echoing of characters as they're typed. Finally, if we're + * in preserve mode, turn the flow control characters back on. */ initscr(); raw(); #ifdef USE_SLANG