From: Richard M. Stallman Date: Thu, 8 Dec 2005 17:43:52 +0000 (+0000) Subject: (read_escape) <\s>: Don't treat strings specially. X-Git-Tag: emacs-pretest-22.0.90~5438 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=010b7eace074b8514dbc00642d9fbc99e064595c;p=emacs.git (read_escape) <\s>: Don't treat strings specially. --- diff --git a/src/lread.c b/src/lread.c index d4fb550b867..5fb0a39ff03 100644 --- a/src/lread.c +++ b/src/lread.c @@ -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);