]> git.eshelyaron.com Git - emacs.git/commitdiff
*** empty log message ***
authorRichard M. Stallman <rms@gnu.org>
Sun, 30 Dec 2001 03:25:26 +0000 (03:25 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 30 Dec 2001 03:25:26 +0000 (03:25 +0000)
etc/NEWS
lisp/ChangeLog
src/ChangeLog

index 704f1158b9b0e5354519c8753cd0d8af37dad223..6946a8853c48834643b9178c87366a6ab88532d8 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -280,6 +280,9 @@ SQL buffer.
 \f
 * Lisp Changes in Emacs 21.3
 
+** A hex escape in a string forces the string to be multibyte.
+An octal escape makes it unibyte.
+
 ** The position after an invisible, intangible character
 is considered an unacceptable value for point;
 intangibility processing effectively treats the following character
index 0b8e43d518e9c53bf92ed7d7e9079842068a91cb..352ebf3e5180143c20f570507856b0a42d0df337 100644 (file)
@@ -1,3 +1,8 @@
+2001-12-29  Richard M. Stallman  <rms@gnu.org>
+
+       * files.el (basic-save-buffer): If a before-write hook displays
+       an echo area message, pause before calling basic-save-buffer-1.
+
 2001-12-29  Markus Rost  <rost@math.ohio-state.edu>
 
        * textmodes/reftex-global.el (reftex-query-replace-document)
index b8a82a2375ef85d4deb24519f59a7f4e7ed7d379..0f284176d7f4b73c373db6dfea1bda0fef5bc5de 100644 (file)
@@ -1,3 +1,13 @@
+2001-12-29  Richard M. Stallman  <rms@gnu.org>
+
+       * print.c (print_object): In multibyte string, use hex escapes.
+       Use octal only for unibyte strings.
+       (PRINTPREPARE): Don't ever set Qprint_escape_nonascii.
+
+       * lread.c (read_escape): New arg BYTEREP for reporting whether
+       escape forces unibyte or multibyte.
+       (read1): When reading a string, take note of that info.
+
 2001-12-29  Ken Raeburn  <raeburn@gnu.org>
 
        * abbrev.c (Fexpand_abbrev): Use NILP instead of implicit zero
@@ -5,6 +15,8 @@
 
 2001-12-29  Richard M. Stallman  <rms@gnu.org>
 
+       * lisp.h (max_specpdl_size): Add declaration.
+
        * fileio.c (Fdo_auto_save): If NO_MESSAGE, don't call push_message.
 
        * keymap.c (silly_event_symbol_error): New subrtn, from Fdefine_key.