changeset 10057:412464619f9c

undo changeset e6441e13acb2
author Ben Abbott <bpabbott@mac.com>
date Mon, 04 Jan 2010 18:46:00 -0500
parents 33ba83a06a42
children 1be07aac495d
files src/ChangeLog src/lex.ll
diffstat 2 files changed, 0 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Mon Jan 04 15:42:35 2010 -0500
+++ b/src/ChangeLog	Mon Jan 04 18:46:00 2010 -0500
@@ -31,7 +31,6 @@
 2010-01-02  Ben Abbott <bpabbott@mac.com>
 
 	* mappers.cc: Change test tolerance from 1e-16 to eps.
-	* lex.ll: Mac OSX's flex converts EOF to 0.
 
 2009-12-30  Jaroslav Hajek  <highegg@gmail.com>
 
--- a/src/lex.ll	Mon Jan 04 15:42:35 2010 -0500
+++ b/src/lex.ll	Mon Jan 04 18:46:00 2010 -0500
@@ -1036,11 +1036,7 @@
 
     int c = text_yyinput ();
 
-#if defined (__APPLE__) && defined (__MACH__)
-    if (! (c == EOF || c == 0))
-#else /* not MacOS X */
     if (c != EOF)
-#endif
       {
 	current_input_column++;