Mercurial > hg > octave-jordi
changeset 3804:4073be5aefa1
[project @ 2001-02-28 08:36:04 by jwe]
author | jwe |
---|---|
date | Wed, 28 Feb 2001 08:38:39 +0000 |
parents | 63c75bc3db82 |
children | 44386b0e53da |
files | src/ChangeLog src/input.cc src/input.h src/toplev.cc |
diffstat | 4 files changed, 12 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2001-02-28 John W. Eaton <jwe@bevo.che.wisc.edu> + + * toplev.cc (main_loop): Set retval to non-zero value if error + occurs when not interactive. + 2001-02-26 John W. Eaton <jwe@bevo.che.wisc.edu> * parse.y (gobble_leading_white_space): Handle CRLF here too.
--- a/src/input.cc +++ b/src/input.cc @@ -124,7 +124,7 @@ // The current line of input, from wherever. std::string current_input_line; -// TRUE after a call to completion_matches(). +// TRUE after a call to completion_matches. bool octave_completion_matches_called = false; static void
--- a/src/input.h +++ b/src/input.h @@ -72,7 +72,7 @@ // A line of input. extern std::string current_input_line; -// TRUE after a call to completion_matches(). +// TRUE after a call to completion_matches. extern bool octave_completion_matches_called; extern std::string gnu_readline (const std::string& s, bool force_readline = false);