]> www.ginac.de Git - ginac.git/commitdiff
* Remove " syntax for the execution stack.
authorRichard Kreckel <Richard.Kreckel@uni-mainz.de>
Sun, 10 Mar 2002 18:55:32 +0000 (18:55 +0000)
committerRichard Kreckel <Richard.Kreckel@uni-mainz.de>
Sun, 10 Mar 2002 18:55:32 +0000 (18:55 +0000)
  (You'll need a bison 1.28 to regenerate your files, since newer versions
  are all broken.  Dammit.)

ginsh/ginsh_lexer.ll
ginsh/ginsh_parser.yy

index c4beae09011eb8e30cfd84285271c759f23f2f6d..0d51942c3cc574d3665723bbe9eb30c85c66fd03 100644 (file)
@@ -85,9 +85,6 @@ score                 return T_SCORE;
 ">="                   return T_GREATEREQ;
 
                        /* last 1..3 expressions */
-\"                     return T_QUOTE;
-\"\"                   return T_QUOTE2;
-\"\"\"                 return T_QUOTE3;
 \%                     return T_QUOTE;
 \%\%                   return T_QUOTE2;
 \%\%\%                 return T_QUOTE3;
index 12aa103acd008366daec050b81844b2eb7e95e5e..3a831fe133eb62677985ed5c7a7ca7ac060f72fc 100644 (file)
@@ -50,7 +50,7 @@ static char *orig_basic_word_break_characters;
 static const char *orig_basic_word_break_characters;
 #endif
 
-// Expression stack for ", "" and """
+// Expression stack for %, %% and %%%
 static void push(const ex &e);
 static ex exstack[3];