diff options
| author | Richard M. Stallman | 2001-12-30 03:25:26 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2001-12-30 03:25:26 +0000 |
| commit | 0065bb7428aba49347c1d7f5fadee8ba85745a30 (patch) | |
| tree | bd792542eebf0ed0a98bc922ca0233c87e671178 | |
| parent | f6f79b37f89c323e9b1d7ae1cda26aa46e2058f2 (diff) | |
| download | emacs-0065bb7428aba49347c1d7f5fadee8ba85745a30.tar.gz emacs-0065bb7428aba49347c1d7f5fadee8ba85745a30.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 3 | ||||
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | src/ChangeLog | 12 |
3 files changed, 20 insertions, 0 deletions
| @@ -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. | ||
| 284 | An octal escape makes it unibyte. | ||
| 285 | |||
| 283 | ** The position after an invisible, intangible character | 286 | ** The position after an invisible, intangible character |
| 284 | is considered an unacceptable value for point; | 287 | is considered an unacceptable value for point; |
| 285 | intangibility processing effectively treats the following character | 288 | intangibility 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 @@ | |||
| 1 | 2001-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 | |||
| 1 | 2001-12-29 Markus Rost <rost@math.ohio-state.edu> | 6 | 2001-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 @@ | |||
| 1 | 2001-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 | |||
| 1 | 2001-12-29 Ken Raeburn <raeburn@gnu.org> | 11 | 2001-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 | ||
| 6 | 2001-12-29 Richard M. Stallman <rms@gnu.org> | 16 | 2001-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. |