aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann <[email protected]>2000-03-24 20:56:46 +0000
committerGerd Moellmann <[email protected]>2000-03-24 20:56:46 +0000
commit9a0dd3dcec25272944b62a0fd063f80ce5eef0b1 (patch)
tree86cd3e3194efc83e676808c6629130a81018bded
parentf4ed767fb5079c07360ec124ba1ee99d16914781 (diff)
*** empty log message ***
-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 32ea87146e..6d6a80f3af 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1068,6 +1068,11 @@ Note that +++ before an item means the Lisp manual has been updated.
When you add a new item, please add it without either +++ or ---
so I will know I still need to look at it -- rms.
+** The variable open-paren-in-column-0-is-defun-start controls whether
+an open parenthesis in column 0 is considered to be the start of a
+defun. If set, the default, it is considered a defun start. If not
+set, an open parenthesis in column 0 has no special meaning.
+
** The new function `string-to-syntax' can be used to translate syntax
specificationa in string form as accepted my `modify-syntax-entry' to
the cons-cell form that is used for the values of the `syntax-table'
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index eae8b1bd6b..361ee8d2fa 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,22 @@
+2000-03-24 Gerd Moellmann <[email protected]>
+
+ * emacs-lisp/lisp.el (beginning-of-defun-raw): Add regexp
+ matching open parenthesis in column 0 to defun-prompt-regexp
+ only if open-paren-in-column-0-is-defun-start is set.
+
+ * sun-curs.el: Require CL at compile-time only.
+
+ * msb.el (msb--choose-file-menu): Use `(apply #'list ...)'
+ instead of copy-list which is a function from CL.
+ (msb--choose-menu, msb--mode-menu-cond)
+ (msb--create-buffer-menu-2): Use dolist instead of mapc.
+ (msb--init-file-alist): Use mapcar instead of mapcan.
+ (msb--aggregate-alist): Use mapcar instead of mapcan. Fix
+ `(' in column 0 in doc string.
+ (msb--add-separators): Use mapcar instead of mapcan.
+
+ * cus-dep.el: Require CL at compile-time only.
+
2000-03-24 Stefan Monnier <[email protected]>
* emacs-lisp/bytecomp.el (byte-compile-warning-types)
diff --git a/src/ChangeLog b/src/ChangeLog
index a87dc76cb9..f35e1bc975 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,10 @@
+2000-03-24 Gerd Moellmann <[email protected]>
+
+ * syntax.c (open_paren_in_column_0_is_defun_start): New variable.
+ (find_defun_start): Consider an open parenthesis in column 0
+ a defun start only if open_paren_in_column_0_is_defun_start is set.
+ (syms_of_syntax): New variable open-paren-in-column-0-is-defun-start.
+
2000-03-24 Stefan Monnier <[email protected]>
* eval.c (Fautoload): Add entry in load-history (if after dump).