Index: lex.h =================================================================== RCS file: /cvs/octave/src/lex.h,v retrieving revision 1.43 diff -u -r1.43 lex.h --- lex.h 24 Apr 2006 19:13:08 -0000 1.43 +++ lex.h 12 Jul 2006 06:36:49 -0000 @@ -122,6 +122,12 @@ // Return transpose or start a string? bool quote_is_transpose; + // Count of the depth of block comment nesting. + int block_comment_nesting_level; + + // Flex start state. + int saved_start_state; + private: lexical_feedback (const lexical_feedback&);