aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2001-12-30 03:25:26 +0000
committerRichard M. Stallman2001-12-30 03:25:26 +0000
commit0065bb7428aba49347c1d7f5fadee8ba85745a30 (patch)
treebd792542eebf0ed0a98bc922ca0233c87e671178
parentf6f79b37f89c323e9b1d7ae1cda26aa46e2058f2 (diff)
downloademacs-0065bb7428aba49347c1d7f5fadee8ba85745a30.tar.gz
emacs-0065bb7428aba49347c1d7f5fadee8ba85745a30.zip
*** empty log message ***
-rw-r--r--etc/NEWS3
-rw-r--r--lisp/ChangeLog5
-rw-r--r--src/ChangeLog12
3 files changed, 20 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 704f1158b9b..6946a8853c4 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -280,6 +280,9 @@ SQL buffer.
280 280
281* Lisp Changes in Emacs 21.3 281* Lisp Changes in Emacs 21.3
282 282
283** A hex escape in a string forces the string to be multibyte.
284An octal escape makes it unibyte.
285
283** The position after an invisible, intangible character 286** The position after an invisible, intangible character
284is considered an unacceptable value for point; 287is considered an unacceptable value for point;
285intangibility processing effectively treats the following character 288intangibility processing effectively treats the following character
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 0b8e43d518e..352ebf3e518 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12001-12-29 Richard M. Stallman <rms@gnu.org>
2
3 * files.el (basic-save-buffer): If a before-write hook displays
4 an echo area message, pause before calling basic-save-buffer-1.
5
12001-12-29 Markus Rost <rost@math.ohio-state.edu> 62001-12-29 Markus Rost <rost@math.ohio-state.edu>
2 7
3 * textmodes/reftex-global.el (reftex-query-replace-document) 8 * textmodes/reftex-global.el (reftex-query-replace-document)
diff --git a/src/ChangeLog b/src/ChangeLog
index b8a82a2375e..0f284176d7f 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,13 @@
12001-12-29 Richard M. Stallman <rms@gnu.org>
2
3 * print.c (print_object): In multibyte string, use hex escapes.
4 Use octal only for unibyte strings.
5 (PRINTPREPARE): Don't ever set Qprint_escape_nonascii.
6
7 * lread.c (read_escape): New arg BYTEREP for reporting whether
8 escape forces unibyte or multibyte.
9 (read1): When reading a string, take note of that info.
10
12001-12-29 Ken Raeburn <raeburn@gnu.org> 112001-12-29 Ken Raeburn <raeburn@gnu.org>
2 12
3 * abbrev.c (Fexpand_abbrev): Use NILP instead of implicit zero 13 * abbrev.c (Fexpand_abbrev): Use NILP instead of implicit zero
@@ -5,6 +15,8 @@
5 15
62001-12-29 Richard M. Stallman <rms@gnu.org> 162001-12-29 Richard M. Stallman <rms@gnu.org>
7 17
18 * lisp.h (max_specpdl_size): Add declaration.
19
8 * fileio.c (Fdo_auto_save): If NO_MESSAGE, don't call push_message. 20 * fileio.c (Fdo_auto_save): If NO_MESSAGE, don't call push_message.
9 21
10 * keymap.c (silly_event_symbol_error): New subrtn, from Fdefine_key. 22 * keymap.c (silly_event_symbol_error): New subrtn, from Fdefine_key.