diff options
| -rw-r--r-- | etc/NEWS | 10 | ||||
| -rw-r--r-- | lisp/ChangeLog | 7 |
2 files changed, 13 insertions, 4 deletions
| @@ -930,6 +930,11 @@ mode-lines in inverse-video. | |||
| 930 | 930 | ||
| 931 | * Lisp Changes in Emacs 21.4 | 931 | * Lisp Changes in Emacs 21.4 |
| 932 | 932 | ||
| 933 | ** The functions all-completions and try-completion now accept lists | ||
| 934 | of strings as well as hash-tables additionally to alists, obarrays | ||
| 935 | and functions. Furthermore, the function `test-completion' is now | ||
| 936 | exported to Lisp. | ||
| 937 | |||
| 933 | ** When pure storage overflows while dumping, Emacs now prints how | 938 | ** When pure storage overflows while dumping, Emacs now prints how |
| 934 | much pure storage it will approximately need. | 939 | much pure storage it will approximately need. |
| 935 | 940 | ||
| @@ -1453,10 +1458,6 @@ This function returns the buffer-local binding of VARIABLE (a symbol) | |||
| 1453 | in buffer BUFFER. If VARIABLE does not have a buffer-local binding in | 1458 | in buffer BUFFER. If VARIABLE does not have a buffer-local binding in |
| 1454 | buffer BUFFER, it returns the default value of VARIABLE instead. | 1459 | buffer BUFFER, it returns the default value of VARIABLE instead. |
| 1455 | 1460 | ||
| 1456 | ** The default value of `paragraph-start' and `indent-line-function' has | ||
| 1457 | been changed to reflect the one used in Text mode rather than the one | ||
| 1458 | used in Indented Text mode. | ||
| 1459 | |||
| 1460 | ** New function `text-clone-create'. Text clones are chunks of text | 1461 | ** New function `text-clone-create'. Text clones are chunks of text |
| 1461 | that are kept identical by transparently propagating changes from one | 1462 | that are kept identical by transparently propagating changes from one |
| 1462 | clone to the other. | 1463 | clone to the other. |
| @@ -1476,6 +1477,7 @@ or `bg:COLOR' has been removed. Lisp programs should use the | |||
| 1476 | are used by define-derived-mode to make sure the mode hook for the | 1477 | are used by define-derived-mode to make sure the mode hook for the |
| 1477 | parent mode is run at the end of the child mode. | 1478 | parent mode is run at the end of the child mode. |
| 1478 | 1479 | ||
| 1480 | +++ | ||
| 1479 | ** `provide' and `featurep' now accept an optional second argument | 1481 | ** `provide' and `featurep' now accept an optional second argument |
| 1480 | to test/provide subfeatures. Also `provide' now checks `after-load-alist' | 1482 | to test/provide subfeatures. Also `provide' now checks `after-load-alist' |
| 1481 | and run any code associated with the provided feature. | 1483 | and run any code associated with the provided feature. |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4a38c33686d..695cf53eeee 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,12 @@ | |||
| 1 | 2002-07-07 Stefan Monnier <monnier@cs.yale.edu> | 1 | 2002-07-07 Stefan Monnier <monnier@cs.yale.edu> |
| 2 | 2 | ||
| 3 | * language/ind-util.el (indian-make-hash): | ||
| 4 | * language/devan-util.el (dev-char-glyph-hash, dev-glyph-glyph-hash) | ||
| 5 | (dev-glyph-glyph-2-hash): Switch makehash -> make-hash-table. | ||
| 6 | |||
| 7 | * subr.el (insert-string): Update the obsolete info. | ||
| 8 | (makehash): Move from C and mark obsolete. | ||
| 9 | |||
| 3 | * emacs-lisp/debug.el (debug-on-entry): Fix the wrapper used for | 10 | * emacs-lisp/debug.el (debug-on-entry): Fix the wrapper used for |
| 4 | aliases to also work for interactive functions. | 11 | aliases to also work for interactive functions. |
| 5 | Use the same wrapper for subroutines. | 12 | Use the same wrapper for subroutines. |