diff src/lread.c @ 4268:75d0292c1bff

[xemacs-hg @ 2007-11-14 19:41:04 by aidan] Correct the dumped information for the Unicode JIT infrastructure.
author aidan
date Wed, 14 Nov 2007 19:41:09 +0000
parents 1abf84db2c7f
children d9eb5ea14f65
line wrap: on
line diff
--- a/src/lread.c	Wed Nov 14 19:25:40 2007 +0000
+++ b/src/lread.c	Wed Nov 14 19:41:09 2007 +0000
@@ -1694,7 +1694,7 @@
 	}
     }
 
-  if (i > 0x110000 || i < 0)
+  if (i >= 0x110000 || i < 0)
     {
       syntax_error ("Not a Unicode code point", make_int(i));
     }