Fix whitespace of last change.
This commit is contained in:
parent
0815600c96
commit
a3ac22e448
1 changed files with 4 additions and 4 deletions
|
@ -1947,7 +1947,7 @@ read_escape (readcharfun, stringp, byterep)
|
|||
while (++count <= unicode_hex_count)
|
||||
{
|
||||
c = READCHAR;
|
||||
/* isdigit(), isalpha() may be locale-specific, which we don't
|
||||
/* isdigit and isalpha may be locale-specific, which we don't
|
||||
want. */
|
||||
if (c >= '0' && c <= '9') i = (i << 4) + (c - '0');
|
||||
else if (c >= 'a' && c <= 'f') i = (i << 4) + (c - 'a') + 10;
|
||||
|
@ -1960,11 +1960,11 @@ read_escape (readcharfun, stringp, byterep)
|
|||
}
|
||||
|
||||
GCPRO1 (readcharfun);
|
||||
lisp_char = call2(intern("decode-char"), intern("ucs"),
|
||||
make_number(i));
|
||||
lisp_char = call2 (intern ("decode-char"), intern ("ucs"),
|
||||
make_number (i));
|
||||
UNGCPRO;
|
||||
|
||||
if (NILP(lisp_char))
|
||||
if (NILP (lisp_char))
|
||||
{
|
||||
error ("Unsupported Unicode code point: U+%x", (unsigned)i);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue