Mercurial > hg > xemacs-beta
comparison 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 |
comparison
equal
deleted
inserted
replaced
4267:66e2714696bd | 4268:75d0292c1bff |
---|---|
1692 make_char (c)); | 1692 make_char (c)); |
1693 break; | 1693 break; |
1694 } | 1694 } |
1695 } | 1695 } |
1696 | 1696 |
1697 if (i > 0x110000 || i < 0) | 1697 if (i >= 0x110000 || i < 0) |
1698 { | 1698 { |
1699 syntax_error ("Not a Unicode code point", make_int(i)); | 1699 syntax_error ("Not a Unicode code point", make_int(i)); |
1700 } | 1700 } |
1701 | 1701 |
1702 lisp_char = Funicode_to_char(make_int(i), Qnil); | 1702 lisp_char = Funicode_to_char(make_int(i), Qnil); |