]> www.ginac.de Git - ginac.git/blobdiff - ginsh/ginsh_lexer.ll
- expressions can now be read from streams; the input expression can contain
[ginac.git] / ginsh / ginsh_lexer.ll
index fddc0b3718c47618a51a5860114a0435bb580400..ed093299d85067027e759cb360aa7405d99a872a 100644 (file)
@@ -1,8 +1,9 @@
 /** @file ginsh_lexer.ll
  *
  *  Lexical analyzer definition for ginsh.
- *  This file must be processed with flex.
- *
+ *  This file must be processed with flex. */
+
+/*
  *  GiNaC Copyright (C) 1999-2000 Johannes Gutenberg University Mainz, Germany
  *
  *  This program is free software; you can redistribute it and/or modify
@@ -59,7 +60,7 @@ AN    [0-9a-zA-Z_]
 
                        /* special values */
 Pi                     yylval = Pi; return T_LITERAL;
-EulerGamma             yylval = EulerGamma; return T_LITERAL;
+gamma                  yylval = gamma; return T_LITERAL;
 Catalan                        yylval = Catalan; return T_LITERAL;
 FAIL                   yylval = *new fail(); return T_LITERAL;
 I                      yylval = I; return T_NUMBER;