Mercurial > hg > octave-avbm
changeset 148:8f91a9cbf451
[project @ 1993-10-05 04:34:27 by jwe]
author | jwe |
---|---|
date | Tue, 05 Oct 1993 04:34:27 +0000 |
parents | b89110688625 |
children | 471912bc76c4 |
files | src/lex.l |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/lex.l +++ b/src/lex.l @@ -1287,7 +1287,8 @@ // See if we have a plot keyword (title, using, or with). - if (plotting && cant_be_identifier && is_plot_keyword (tok); + int plot_option_kw = is_plot_keyword (tok); + if (plotting && cant_be_identifier && plot_option_kw) TOK_RETURN (plot_option_kw); // Yes, we really do need both of these plot_range variables. One