(read_escape) <\s>: Don't treat strings specially.

This commit is contained in:
Richard M. Stallman 2005-12-08 17:43:52 +00:00
parent 1d49d5d9e1
commit 010b7eace0

View file

@ -1738,13 +1738,12 @@ read_escape (readcharfun, stringp, byterep)
return c | alt_modifier;
case 's':
if (stringp)
return ' ';
c = READCHAR;
if (c != '-') {
UNREAD (c);
return ' ';
}
if (c != '-')
{
UNREAD (c);
return ' ';
}
c = READCHAR;
if (c == '\\')
c = read_escape (readcharfun, 0, byterep);