diff options
| author | Stefan Monnier | 2001-10-12 21:21:17 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2001-10-12 21:21:17 +0000 |
| commit | 026f408dc81a8cbfa78916b5757252d966730d8a (patch) | |
| tree | a2cfb6729c7b010e49915a60294240981e18e897 | |
| parent | be5fc59bde20008088764f072b71e36dd616cfd8 (diff) | |
| download | emacs-026f408dc81a8cbfa78916b5757252d966730d8a.tar.gz emacs-026f408dc81a8cbfa78916b5757252d966730d8a.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 11 | ||||
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | src/ChangeLog | 8 |
3 files changed, 22 insertions, 0 deletions
| @@ -15,6 +15,10 @@ in line with the output of other GNU tools. | |||
| 15 | 15 | ||
| 16 | ** perl-mode has a new variable `perl-indent-continued-arguments'. | 16 | ** perl-mode has a new variable `perl-indent-continued-arguments'. |
| 17 | 17 | ||
| 18 | ** `special-display-buffer-names' and `special-display-regexps' now | ||
| 19 | understand two new boolean pseudo-frame-parameters `same-frame' and | ||
| 20 | `same-window'. | ||
| 21 | |||
| 18 | ** When pure storage overflows while dumping, Emacs now prints how | 22 | ** When pure storage overflows while dumping, Emacs now prints how |
| 19 | much pure storage it will approximately need. | 23 | much pure storage it will approximately need. |
| 20 | 24 | ||
| @@ -72,6 +76,13 @@ accepts a float as UID parameter. | |||
| 72 | 76 | ||
| 73 | ** The local variable `no-byte-compile' in elisp files is now obeyed. | 77 | ** The local variable `no-byte-compile' in elisp files is now obeyed. |
| 74 | 78 | ||
| 79 | ** New functions `keymap-prompt' and `current-active-maps'. | ||
| 80 | |||
| 81 | ** New function `describe-buffer-bindings'. | ||
| 82 | |||
| 83 | ** New vars `exec-suffixes' and `load-suffixes' used when | ||
| 84 | searching for an executable resp. an elisp file. | ||
| 85 | |||
| 75 | ** Variable aliases have been implemented | 86 | ** Variable aliases have been implemented |
| 76 | 87 | ||
| 77 | - Macro: defvaralias ALIAS-VAR BASE-VAR | 88 | - Macro: defvaralias ALIAS-VAR BASE-VAR |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 97e109445da..0393faa8501 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2001-10-12 Stefan Monnier <monnier@cs.yale.edu> | 1 | 2001-10-12 Stefan Monnier <monnier@cs.yale.edu> |
| 2 | 2 | ||
| 3 | * frame.el (special-display-popup-frame): Obey new specs `same-window' | ||
| 4 | and `same-frame'. | ||
| 5 | |||
| 3 | * menu-bar.el (minibuffer-local-*map): Take inheritance into account. | 6 | * menu-bar.el (minibuffer-local-*map): Take inheritance into account. |
| 4 | 7 | ||
| 5 | * simple.el (minibuffer-local*-map): Remove redundant bindings. | 8 | * simple.el (minibuffer-local*-map): Remove redundant bindings. |
diff --git a/src/ChangeLog b/src/ChangeLog index ebdcb23e3cd..ae4010d0479 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,10 @@ | |||
| 1 | 2001-10-12 Stefan Monnier <monnier@cs.yale.edu> | 1 | 2001-10-12 Stefan Monnier <monnier@cs.yale.edu> |
| 2 | 2 | ||
| 3 | * keymap.c (Fkey_description): Use empty_string. | ||
| 4 | (Fdescribe_bindings_internal, describe_buffer_bindings): Remove. | ||
| 5 | (syms_of_keymap): Setup inheritance between maps. | ||
| 6 | Don't export Sdescribe_bindings_internal any more. | ||
| 7 | |||
| 3 | * minibuf.c (keys_of_minibuf): Eliminate redundant bindings. | 8 | * minibuf.c (keys_of_minibuf): Eliminate redundant bindings. |
| 4 | 9 | ||
| 5 | 2001-10-12 Gerd Moellmann <gerd@gnu.org> | 10 | 2001-10-12 Gerd Moellmann <gerd@gnu.org> |
| @@ -20,11 +25,14 @@ | |||
| 20 | 25 | ||
| 21 | 2001-10-11 Stefan Monnier <monnier@cs.yale.edu> | 26 | 2001-10-11 Stefan Monnier <monnier@cs.yale.edu> |
| 22 | 27 | ||
| 28 | * callint.c (Fcall_interactively): Remove unused code. Use XCAR. | ||
| 29 | |||
| 23 | * xfns.c (x_create_bitmap_from_file, x_find_image_file): | 30 | * xfns.c (x_create_bitmap_from_file, x_find_image_file): |
| 24 | * w32proc.c (sys_spawnve): | 31 | * w32proc.c (sys_spawnve): |
| 25 | * w32fns.c (x_create_bitmap_from_file, x_find_image_file): | 32 | * w32fns.c (x_create_bitmap_from_file, x_find_image_file): |
| 26 | * w32.c (check_windows_init_file): | 33 | * w32.c (check_windows_init_file): |
| 27 | * sound.c (Fplay_sound): | 34 | * sound.c (Fplay_sound): |
| 35 | * emacs.c (init_cmdargs): | ||
| 28 | * process.c (Fstart_process): Update calls to openp. | 36 | * process.c (Fstart_process): Update calls to openp. |
| 29 | 37 | ||
| 30 | * callproc.c (Vexec_suffixes): New var. | 38 | * callproc.c (Vexec_suffixes): New var. |