Mercurial > hg > octave-lyh
diff src/token.cc @ 1971:ac6030c1f239
[project @ 1996-02-23 10:51:03 by jwe]
author | jwe |
---|---|
date | Fri, 23 Feb 1996 10:51:03 +0000 |
parents | e62277bf5fe0 |
children | 003570e69c7b |
line wrap: on
line diff
--- a/src/token.cc +++ b/src/token.cc @@ -51,12 +51,13 @@ str = new string (s); } -token::token (double d, const string& /* s */, int l, int c) +token::token (double d, const string& s, int l, int c) { line_num = l; column_num = c; type_tag = double_token; num = d; + orig_text = s; } token::token (end_tok_type t, int l, int c)