]> www.ginac.de Git - ginac.git/blobdiff - ginsh/ginsh_lexer.ll
- dramatic speedup for characteristic polynomials of numerical matrices.
[ginac.git] / ginsh / ginsh_lexer.ll
index 2d925b58d121b9df88e2366285b412870e915246..7f78a2dd3f97ec72cd0f0d4992c8047cff825f34 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;
+Euler                  yylval = Euler; return T_LITERAL;
 Catalan                        yylval = Catalan; return T_LITERAL;
 FAIL                   yylval = *new fail(); return T_LITERAL;
 I                      yylval = I; return T_NUMBER;
@@ -67,6 +68,7 @@ Digits                        yylval = (long)Digits; return T_DIGITS;
 
                        /* keywords */
 quit|exit              return T_QUIT;
+warranty               return T_WARRANTY;
 print                  return T_PRINT;
 read                   return T_READ;
 write                  return T_WRITE;