diff options
| author | Gerd Moellmann | 2000-08-08 18:42:55 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-08-08 18:42:55 +0000 |
| commit | 25ad137130a1888743e2ea65c01c2b317b2f1c8e (patch) | |
| tree | b6a240bbd0f50364043cbd4907626996ac5973e7 | |
| parent | 90df743364dfcd8a1524e35217beb8e920dcf37b (diff) | |
| download | emacs-25ad137130a1888743e2ea65c01c2b317b2f1c8e.tar.gz emacs-25ad137130a1888743e2ea65c01c2b317b2f1c8e.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 10 | ||||
| -rw-r--r-- | lisp/ChangeLog | 21 | ||||
| -rw-r--r-- | man/ChangeLog | 5 | ||||
| -rw-r--r-- | src/ChangeLog | 14 |
4 files changed, 43 insertions, 7 deletions
| @@ -29,6 +29,16 @@ support 64-bit executables. See etc/MACHINES for instructions. | |||
| 29 | 29 | ||
| 30 | * Changes in Emacs 21.1 | 30 | * Changes in Emacs 21.1 |
| 31 | 31 | ||
| 32 | ** The new variable `auto-mode-interpreter-regexp' contains a regular | ||
| 33 | expression matching interpreters, for file mode determination. | ||
| 34 | |||
| 35 | This regular expression is matched against the first line of a file to | ||
| 36 | determine the file's mode in `set-auto-mode' when Emacs can't deduce a | ||
| 37 | mode from the file's name. If it matches, the file is assumed to be | ||
| 38 | interpreted by the interpreter matched by the second group of the | ||
| 39 | regular expression. The mode is then determined as the mode | ||
| 40 | associated with that interpreter in `interpreter-mode-alist'. | ||
| 41 | |||
| 32 | ** C-down-mouse-3 is bound differently. Now if the menu bar is not | 42 | ** C-down-mouse-3 is bound differently. Now if the menu bar is not |
| 33 | displayed it pops up a menu containing the items which would be on the | 43 | displayed it pops up a menu containing the items which would be on the |
| 34 | menu bar. If the menu bar is displayed, it pops up the major mode | 44 | menu bar. If the menu bar is displayed, it pops up the major mode |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 94e38e400cc..505f1998ab7 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,26 @@ | |||
| 1 | 2000-08-08 Gerd Moellmann <gerd@gnu.org> | 1 | 2000-08-08 Gerd Moellmann <gerd@gnu.org> |
| 2 | 2 | ||
| 3 | * info.el (Info-insert-dir): Use Info-additional-directory-list if | ||
| 4 | non-nil. | ||
| 5 | (Info-file-list-for-emacs): Remove "info" from the list because | ||
| 6 | that leads to trying to use the documentation from file `info' | ||
| 7 | in various situations where it isn't appropriate, for instance | ||
| 8 | C-h C-k C-h i. | ||
| 9 | |||
| 10 | * ffap.el (ffap-read-file-or-url-internal): Handle case that | ||
| 11 | DIR and/or STRING are nil. | ||
| 12 | |||
| 13 | * progmodes/compile.el (compilation-setup): Make variable | ||
| 14 | compilation-error-screen-columns buffer-local, as some comment | ||
| 15 | in the code suggests it should be. | ||
| 16 | |||
| 17 | * files.el (auto-mode-interpreter-regexp): New variable. | ||
| 18 | (set-auto-mode): Use it. | ||
| 19 | |||
| 20 | * indent.el (indent-for-tab-command): Doc fix. | ||
| 21 | |||
| 22 | * mouse-sel.el (mouse-sel-mode): Doc fix. | ||
| 23 | |||
| 3 | * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Handle `#N=' | 24 | * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Handle `#N=' |
| 4 | labels. | 25 | labels. |
| 5 | 26 | ||
diff --git a/man/ChangeLog b/man/ChangeLog index d12998a3a05..ac648e1d552 100644 --- a/man/ChangeLog +++ b/man/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2000-08-08 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * faq.texi (Disabling backups): Replace reference to | ||
| 4 | non-existent initial-dired-omit-files-p with something that works. | ||
| 5 | |||
| 1 | 2000-08-08 Eli Zaretskii <eliz@is.elta.co.il> | 6 | 2000-08-08 Eli Zaretskii <eliz@is.elta.co.il> |
| 2 | 7 | ||
| 3 | * programs.texi (Documentation): Add an xref to WoMan's own | 8 | * programs.texi (Documentation): Add an xref to WoMan's own |
diff --git a/src/ChangeLog b/src/ChangeLog index d106e3e30a2..64fa38a87e3 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | * textprop.c (Fprevious_single_char_property_change): Don't do | 17 | * textprop.c (Fprevious_single_char_property_change): Don't do |
| 18 | arithmetic directly on lisp objects. | 18 | arithmetic directly on lisp objects. |
| 19 | 19 | ||
| 20 | * editfns.c (find_field): Use EQ, not ==, to compare lisp | 20 | * editfns.c (find_field): Use EQ, not ==, to compare Lisp |
| 21 | objects. | 21 | objects. |
| 22 | 22 | ||
| 23 | * keyboard.h (menu_item_eval_property): Declare. | 23 | * keyboard.h (menu_item_eval_property): Declare. |
| @@ -26,15 +26,15 @@ | |||
| 26 | reuse as buffer name, instead of recreating (and discarding) every | 26 | reuse as buffer name, instead of recreating (and discarding) every |
| 27 | time a message is logged. | 27 | time a message is logged. |
| 28 | (with_echo_area_buffer): Make callback arg A2 a lisp object. | 28 | (with_echo_area_buffer): Make callback arg A2 a lisp object. |
| 29 | (current_message_1, truncate_message_1, set_message_1, | 29 | (current_message_1, truncate_message_1, set_message_1) |
| 30 | display_echo_area_1, resize_mini_window_1): Signatures changed. | 30 | (display_echo_area_1, resize_mini_window_1): Signatures changed. |
| 31 | (current_message, truncate_echo_area, display_echo_area, | 31 | (current_message, truncate_echo_area, display_echo_area) |
| 32 | resize_echo_area_axactly): Changed calls. | 32 | (resize_echo_area_axactly): Changed calls. |
| 33 | 33 | ||
| 34 | * coding.c (find_safe_codings): CHAR_TABLE_SET index must be a | 34 | * coding.c (find_safe_codings): CHAR_TABLE_SET index must be a |
| 35 | lisp object. | 35 | Lisp object. |
| 36 | (Ffind_coding_systems_region_internal): First argument to Fappend | 36 | (Ffind_coding_systems_region_internal): First argument to Fappend |
| 37 | must be an integer, not a lisp object. | 37 | must be an integer, not a Lisp object. |
| 38 | 38 | ||
| 39 | 2000-08-08 Kenichi Handa <handa@etl.go.jp> | 39 | 2000-08-08 Kenichi Handa <handa@etl.go.jp> |
| 40 | 40 | ||