aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/subr.el3
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 503922d8711..886e8091f7a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12003-11-15 Thien-Thi Nguyen <ttn@gnu.org>
2
3 * subr.el (minor-mode-list): Add `hs-minor-mode'.
4
12003-11-14 Thien-Thi Nguyen <ttn@gnu.org> 52003-11-14 Thien-Thi Nguyen <ttn@gnu.org>
2 6
3 * diff-mode.el (diff-hunk-prev, diff-hunk-next): Support 7 * diff-mode.el (diff-hunk-prev, diff-hunk-next): Support
diff --git a/lisp/subr.el b/lisp/subr.el
index e0fdc5c0b24..711f763be92 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -2224,7 +2224,8 @@ If SUFFIX is non-nil, add that at the end of the file name."
2224;; isearch-mode is deliberately excluded, since you should 2224;; isearch-mode is deliberately excluded, since you should
2225;; not call it yourself. 2225;; not call it yourself.
2226(defvar minor-mode-list '(auto-save-mode auto-fill-mode abbrev-mode 2226(defvar minor-mode-list '(auto-save-mode auto-fill-mode abbrev-mode
2227 overwrite-mode view-mode) 2227 overwrite-mode view-mode
2228 hs-minor-mode)
2228 "List of all minor mode functions.") 2229 "List of all minor mode functions.")
2229 2230
2230(defun add-minor-mode (toggle name &optional keymap after toggle-fun) 2231(defun add-minor-mode (toggle name &optional keymap after toggle-fun)