# HG changeset patch # User jwe # Date 825072663 0 # Node ID ac6030c1f23960aacd61f98eff4a8bb7b2a8d367 # Parent f10f6646739058623e072244b4b2ca237e444bbd [project @ 1996-02-23 10:51:03 by jwe] diff --git a/src/token.cc b/src/token.cc --- 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)