diff options
| author | Stefan Monnier | 2001-11-27 19:23:17 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2001-11-27 19:23:17 +0000 |
| commit | 9fabb2f55064bafd3bc450a751d0ee75411420b2 (patch) | |
| tree | 8535b063b569852134e4b85f467d96fa8a212b0b | |
| parent | d6cdfce6385ae2f8529adbf3d2524fa8add5c340 (diff) | |
| download | emacs-9fabb2f55064bafd3bc450a751d0ee75411420b2.tar.gz emacs-9fabb2f55064bafd3bc450a751d0ee75411420b2.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | src/ChangeLog | 11 |
2 files changed, 15 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2e19238b354..f9c24035be5 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -22,6 +22,10 @@ | |||
| 22 | 22 | ||
| 23 | * cus-start.el (recursive-load-depth-limit): Delete item. | 23 | * cus-start.el (recursive-load-depth-limit): Delete item. |
| 24 | 24 | ||
| 25 | 2001-11-26 Stefan Monnier <monnier@cs.yale.edu> | ||
| 26 | |||
| 27 | * help-fns.el (describe-categories, help-describe-category-set): New. | ||
| 28 | |||
| 25 | 2001-11-26 Sam Steingold <sds@gnu.org> | 29 | 2001-11-26 Sam Steingold <sds@gnu.org> |
| 26 | 30 | ||
| 27 | * progmodes/cc-mode.el (c-submit-bug-report): Make sure that the | 31 | * progmodes/cc-mode.el (c-submit-bug-report): Make sure that the |
diff --git a/src/ChangeLog b/src/ChangeLog index 9a6367a445f..9c65b156d30 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,16 @@ | |||
| 1 | 2001-11-26 Stefan Monnier <monnier@cs.yale.edu> | 1 | 2001-11-26 Stefan Monnier <monnier@cs.yale.edu> |
| 2 | 2 | ||
| 3 | * syntax.c (syms_of_syntax): Remove defsubr of Sdescribe_syntax. | ||
| 4 | (describe_syntax, describe_syntax_1, Fdescribe_syntax): Remove. | ||
| 5 | |||
| 6 | * eval.c: Use AREF and ASIZE. | ||
| 7 | (Ffetch_bytecode): Add the file name to the error message. | ||
| 8 | |||
| 9 | * fileio.c (Ffind_file_name_handler): Give precedence to handlers | ||
| 10 | which match the end of the file-name. | ||
| 11 | (Fsubstitute_in_file_name): Don't signal an error if $ENVVAR | ||
| 12 | is not a valid env var, but leave it as is instead. | ||
| 13 | |||
| 3 | * keymap.c (access_keymap): Handle t bindings like nil bindings. | 14 | * keymap.c (access_keymap): Handle t bindings like nil bindings. |
| 4 | Make nil bindings in char-tables transparent. | 15 | Make nil bindings in char-tables transparent. |
| 5 | (store_in_keymap): Turn a nil binding into a t binding for char-tables. | 16 | (store_in_keymap): Turn a nil binding into a t binding for char-tables. |