# HG changeset patch # User jwe # Date 1111081981 0 # Node ID 6434e63553f0471d9cc5507434930cf0ca142ef0 # Parent 552d7a7a081914aead434373935dc81f6c7d1b00 [project @ 2005-03-17 17:53:01 by jwe] diff -r 552d7a7a0819 -r 6434e63553f0 doc/interpreter/io.txi --- a/doc/interpreter/io.txi Thu Mar 17 17:48:33 2005 +0000 +++ b/doc/interpreter/io.txi Thu Mar 17 17:53:01 2005 +0000 @@ -119,8 +119,8 @@ @node Simple File I/O @subsection Simple File I/O -@cindex{saving data} -@cindex{loading data} +@cindex saving data +@cindex loading data The @code{save} and @code{load} commands allow data to be written to and read from disk files in various formats. The default format of files written by the @code{save} command can be controlled using the built-in diff -r 552d7a7a0819 -r 6434e63553f0 src/lex.l --- a/src/lex.l Thu Mar 17 17:48:33 2005 +0000 +++ b/src/lex.l Thu Mar 17 17:53:01 2005 +0000 @@ -215,9 +215,9 @@ std::stack context; - static const int BRACKET = 1; - static const int BRACE = 2; - static const int PAREN = 3; + static const int BRACKET; + static const int BRACE; + static const int PAREN; bracket_brace_paren_nesting_level (const bracket_brace_paren_nesting_level&); @@ -225,6 +225,10 @@ operator = (const bracket_brace_paren_nesting_level&); }; +const int bracket_brace_paren_nesting_level::BRACKET = 1; +const int bracket_brace_paren_nesting_level::BRACE = 2; +const int bracket_brace_paren_nesting_level::PAREN = 3; + static bracket_brace_paren_nesting_level nesting_level; static bool Vwarn_matlab_incompatible = false;