From 25ad137130a1888743e2ea65c01c2b317b2f1c8e Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Tue, 8 Aug 2000 18:42:55 +0000 Subject: [PATCH] *** empty log message *** --- etc/NEWS | 10 ++++++++++ lisp/ChangeLog | 21 +++++++++++++++++++++ man/ChangeLog | 5 +++++ src/ChangeLog | 14 +++++++------- 4 files changed, 43 insertions(+), 7 deletions(-) diff --git a/etc/NEWS b/etc/NEWS index dcf8b55e992..72d52668d58 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -29,6 +29,16 @@ support 64-bit executables. See etc/MACHINES for instructions. * Changes in Emacs 21.1 +** The new variable `auto-mode-interpreter-regexp' contains a regular +expression matching interpreters, for file mode determination. + +This regular expression is matched against the first line of a file to +determine the file's mode in `set-auto-mode' when Emacs can't deduce a +mode from the file's name. If it matches, the file is assumed to be +interpreted by the interpreter matched by the second group of the +regular expression. The mode is then determined as the mode +associated with that interpreter in `interpreter-mode-alist'. + ** C-down-mouse-3 is bound differently. Now if the menu bar is not displayed it pops up a menu containing the items which would be on the 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 @@ 2000-08-08 Gerd Moellmann + * info.el (Info-insert-dir): Use Info-additional-directory-list if + non-nil. + (Info-file-list-for-emacs): Remove "info" from the list because + that leads to trying to use the documentation from file `info' + in various situations where it isn't appropriate, for instance + C-h C-k C-h i. + + * ffap.el (ffap-read-file-or-url-internal): Handle case that + DIR and/or STRING are nil. + + * progmodes/compile.el (compilation-setup): Make variable + compilation-error-screen-columns buffer-local, as some comment + in the code suggests it should be. + + * files.el (auto-mode-interpreter-regexp): New variable. + (set-auto-mode): Use it. + + * indent.el (indent-for-tab-command): Doc fix. + + * mouse-sel.el (mouse-sel-mode): Doc fix. + * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Handle `#N=' labels. diff --git a/man/ChangeLog b/man/ChangeLog index d12998a3a05..ac648e1d552 100644 --- a/man/ChangeLog +++ b/man/ChangeLog @@ -1,3 +1,8 @@ +2000-08-08 Gerd Moellmann + + * faq.texi (Disabling backups): Replace reference to + non-existent initial-dired-omit-files-p with something that works. + 2000-08-08 Eli Zaretskii * 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 @@ * textprop.c (Fprevious_single_char_property_change): Don't do arithmetic directly on lisp objects. - * editfns.c (find_field): Use EQ, not ==, to compare lisp + * editfns.c (find_field): Use EQ, not ==, to compare Lisp objects. * keyboard.h (menu_item_eval_property): Declare. @@ -26,15 +26,15 @@ reuse as buffer name, instead of recreating (and discarding) every time a message is logged. (with_echo_area_buffer): Make callback arg A2 a lisp object. - (current_message_1, truncate_message_1, set_message_1, - display_echo_area_1, resize_mini_window_1): Signatures changed. - (current_message, truncate_echo_area, display_echo_area, - resize_echo_area_axactly): Changed calls. + (current_message_1, truncate_message_1, set_message_1) + (display_echo_area_1, resize_mini_window_1): Signatures changed. + (current_message, truncate_echo_area, display_echo_area) + (resize_echo_area_axactly): Changed calls. * coding.c (find_safe_codings): CHAR_TABLE_SET index must be a - lisp object. + Lisp object. (Ffind_coding_systems_region_internal): First argument to Fappend - must be an integer, not a lisp object. + must be an integer, not a Lisp object. 2000-08-08 Kenichi Handa -- 2.39.2