Mercurial > hg > octave-nkf
diff src/input.cc @ 3258:4964d5391acc
[project @ 1999-07-21 21:51:33 by jwe]
author | jwe |
---|---|
date | Wed, 21 Jul 1999 21:52:04 +0000 |
parents | 4d33b1e56bff |
children | 7c03933635c6 |
line wrap: on
line diff
--- a/src/input.cc +++ b/src/input.cc @@ -883,19 +883,19 @@ void symbols_of_input (void) { - DEFVAR (PS1, "\\s:\\#> ", 0, ps1, + DEFVAR (PS1, "\\s:\\#> ", ps1, "primary prompt string"); - DEFVAR (PS2, "> ", 0, ps2, + DEFVAR (PS2, "> ", ps2, "secondary prompt string"); - DEFVAR (PS4, "+ ", 0, ps4, + DEFVAR (PS4, "+ ", ps4, "string printed before echoed input (enabled by --echo-input)"); - DEFVAR (completion_append_char, " ", 0, completion_append_char, + DEFVAR (completion_append_char, " ", completion_append_char, "the string to append after successful command-line completion attempts"); - DEFVAR (echo_executing_commands, static_cast<double> (ECHO_OFF), 0, + DEFVAR (echo_executing_commands, static_cast<double> (ECHO_OFF), echo_executing_commands, "echo commands as they are executed"); }