Mercurial > hg > xemacs-beta
comparison src/lread.c @ 3665:5724b7632db3
[xemacs-hg @ 2006-11-07 15:54:42 by stephent]
Try to kill src/xft-fonts.h permanently.
author | stephent |
---|---|
date | Tue, 07 Nov 2006 15:54:47 +0000 |
parents | c136144fe765 |
children | 3214dca89755 |
comparison
equal
deleted
inserted
replaced
3664:1d313cd71cd7 | 3665:5724b7632db3 |
---|---|
1718 static Ichar | 1718 static Ichar |
1719 read_escape (Lisp_Object readcharfun) | 1719 read_escape (Lisp_Object readcharfun) |
1720 { | 1720 { |
1721 /* This function can GC */ | 1721 /* This function can GC */ |
1722 Ichar c = readchar (readcharfun); | 1722 Ichar c = readchar (readcharfun); |
1723 /* \u allows up to four hex digits, \U up to eight. Default to the | |
1724 behaviour for \u, and change this value in the case that \U is seen. */ | |
1725 int unicode_hex_count = 4; | |
1723 | 1726 |
1724 if (c < 0) | 1727 if (c < 0) |
1725 signal_error (Qend_of_file, 0, READCHARFUN_MAYBE (readcharfun)); | 1728 signal_error (Qend_of_file, 0, READCHARFUN_MAYBE (readcharfun)); |
1726 | 1729 |
1727 switch (c) | 1730 switch (c) |