aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorKim F. Storm2003-02-13 12:44:57 +0000
committerKim F. Storm2003-02-13 12:44:57 +0000
commit37cd423857a5ca70550c59f932fdb7e2f1f3e420 (patch)
tree83828c7a13b8bddadda6da88764a8676f0851143 /src/ChangeLog
parentc794a94d9af00b4bf8461d0f1e4f6c9282767c5e (diff)
downloademacs-37cd423857a5ca70550c59f932fdb7e2f1f3e420.tar.gz
emacs-37cd423857a5ca70550c59f932fdb7e2f1f3e420.zip
(read_escape): Interpret \s as a SPACE character, except
for \s-X in a character constant which still is the super modifier. (read1): Signal an `invalid read syntax' error if a character constant is immediately followed by a digit or symbol character.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index d849ecb49e3..bf03f943786 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,10 @@
12003-02-13 Kim F. Storm <storm@cua.dk> 12003-02-13 Kim F. Storm <storm@cua.dk>
2 2
3 * lread.c (read_escape): Interpret \s as a SPACE character, except
4 for \s-X in a character constant which still is the super modifier.
5 (read1): Signal an `invalid read syntax' error if a character
6 constant is immediately followed by a digit or symbol character.
7
3 * search.c (Fmatch_data): Doc fix. Explicitly state that 8 * search.c (Fmatch_data): Doc fix. Explicitly state that
4 match-data is undefined if last search failed. 9 match-data is undefined if last search failed.
5 10