# HG changeset patch # User John W. Eaton # Date 1317408033 14400 # Node ID 28e3e9158d7058762b71b0497dd40fa94c3f642a # Parent b6efe55f97c710f1cbb4e0bec22ace255ef6bb86 fix bug with parsing cell array lists * lex.ll ({S}+): If spaces are converted to a comma, set lexer_flags.looking_for_object_index to false. diff -r b6efe55f97c7 -r 28e3e9158d70 src/lex.ll --- a/src/lex.ll Fri Sep 30 09:57:10 2011 -0700 +++ b/src/lex.ll Fri Sep 30 14:40:33 2011 -0400 @@ -554,6 +554,7 @@ lexer_flags.quote_is_transpose = false; lexer_flags.convert_spaces_to_comma = true; + lexer_flags.looking_for_object_index = false; maybe_warn_separator_insert (',');