aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--etc/NEWS5
-rw-r--r--lisp/ChangeLog19
-rw-r--r--src/ChangeLog7
3 files changed, 31 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 32ea87146e0..6d6a80f3af6 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1068,6 +1068,11 @@ Note that +++ before an item means the Lisp manual has been updated.
1068When you add a new item, please add it without either +++ or --- 1068When you add a new item, please add it without either +++ or ---
1069so I will know I still need to look at it -- rms. 1069so 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
1072an open parenthesis in column 0 is considered to be the start of a
1073defun. If set, the default, it is considered a defun start. If not
1074set, 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
1072specificationa in string form as accepted my `modify-syntax-entry' to 1077specificationa in string form as accepted my `modify-syntax-entry' to
1073the cons-cell form that is used for the values of the `syntax-table' 1078the 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 @@
12000-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
12000-03-24 Stefan Monnier <monnier@cs.yale.edu> 202000-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 @@
12000-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
12000-03-24 Stefan Monnier <monnier@cs.yale.edu> 82000-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).