# HG changeset patch # User jwe # Date 798435457 0 # Node ID fd3ed8834b77f3795ef3ee49203a95986eb6dfbb # Parent 7949d2e663392949b66d8b57af5e55eb7abb237b [project @ 1995-04-21 03:37:37 by jwe] diff -r 7949d2e66339 -r fd3ed8834b77 src/lex.l --- a/src/lex.l Fri Apr 21 00:19:28 1995 +0000 +++ b/src/lex.l Fri Apr 21 03:37:37 1995 +0000 @@ -1791,7 +1791,11 @@ if (! in_plot_range) past_plot_range = 1; - int plot_option_kw = is_plot_keyword (tok); + // Option keywords can't appear in parentheses or braces. + + int plot_option_kw = 0; + if (nesting_level.empty ()) + plot_option_kw = is_plot_keyword (tok); if (cant_be_identifier && plot_option_kw) TOK_RETURN (plot_option_kw);