diff options
| -rw-r--r-- | etc/NEWS | 5 | ||||
| -rw-r--r-- | lisp/ChangeLog | 19 | ||||
| -rw-r--r-- | src/ChangeLog | 7 |
3 files changed, 31 insertions, 0 deletions
| @@ -1068,6 +1068,11 @@ Note that +++ before an item means the Lisp manual has been updated. | |||
| 1068 | When you add a new item, please add it without either +++ or --- | 1068 | When you add a new item, please add it without either +++ or --- |
| 1069 | so I will know I still need to look at it -- rms. | 1069 | so I will know I still need to look at it -- rms. |
| 1070 | 1070 | ||
| 1071 | ** The variable open-paren-in-column-0-is-defun-start controls whether | ||
| 1072 | an open parenthesis in column 0 is considered to be the start of a | ||
| 1073 | defun. If set, the default, it is considered a defun start. If not | ||
| 1074 | set, an open parenthesis in column 0 has no special meaning. | ||
| 1075 | |||
| 1071 | ** The new function `string-to-syntax' can be used to translate syntax | 1076 | ** The new function `string-to-syntax' can be used to translate syntax |
| 1072 | specificationa in string form as accepted my `modify-syntax-entry' to | 1077 | specificationa in string form as accepted my `modify-syntax-entry' to |
| 1073 | the cons-cell form that is used for the values of the `syntax-table' | 1078 | the cons-cell form that is used for the values of the `syntax-table' |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index eae8b1bd6ba..361ee8d2fa0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,22 @@ | |||
| 1 | 2000-03-24 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * emacs-lisp/lisp.el (beginning-of-defun-raw): Add regexp | ||
| 4 | matching open parenthesis in column 0 to defun-prompt-regexp | ||
| 5 | only if open-paren-in-column-0-is-defun-start is set. | ||
| 6 | |||
| 7 | * sun-curs.el: Require CL at compile-time only. | ||
| 8 | |||
| 9 | * msb.el (msb--choose-file-menu): Use `(apply #'list ...)' | ||
| 10 | instead of copy-list which is a function from CL. | ||
| 11 | (msb--choose-menu, msb--mode-menu-cond) | ||
| 12 | (msb--create-buffer-menu-2): Use dolist instead of mapc. | ||
| 13 | (msb--init-file-alist): Use mapcar instead of mapcan. | ||
| 14 | (msb--aggregate-alist): Use mapcar instead of mapcan. Fix | ||
| 15 | `(' in column 0 in doc string. | ||
| 16 | (msb--add-separators): Use mapcar instead of mapcan. | ||
| 17 | |||
| 18 | * cus-dep.el: Require CL at compile-time only. | ||
| 19 | |||
| 1 | 2000-03-24 Stefan Monnier <monnier@cs.yale.edu> | 20 | 2000-03-24 Stefan Monnier <monnier@cs.yale.edu> |
| 2 | 21 | ||
| 3 | * emacs-lisp/bytecomp.el (byte-compile-warning-types) | 22 | * emacs-lisp/bytecomp.el (byte-compile-warning-types) |
diff --git a/src/ChangeLog b/src/ChangeLog index a87dc76cb90..f35e1bc9751 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2000-03-24 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * syntax.c (open_paren_in_column_0_is_defun_start): New variable. | ||
| 4 | (find_defun_start): Consider an open parenthesis in column 0 | ||
| 5 | a defun start only if open_paren_in_column_0_is_defun_start is set. | ||
| 6 | (syms_of_syntax): New variable open-paren-in-column-0-is-defun-start. | ||
| 7 | |||
| 1 | 2000-03-24 Stefan Monnier <monnier@cs.yale.edu> | 8 | 2000-03-24 Stefan Monnier <monnier@cs.yale.edu> |
| 2 | 9 | ||
| 3 | * eval.c (Fautoload): Add entry in load-history (if after dump). | 10 | * eval.c (Fautoload): Add entry in load-history (if after dump). |