aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2001-12-01 18:16:58 +0000
committerStefan Monnier2001-12-01 18:16:58 +0000
commit14e76ac97c890e51353046854a93b72053c0b926 (patch)
tree9d7fabf4dec579120d821573abec803a075926f9
parentf4c3e044d486ca8e2a328e09a6af8692bb4fe859 (diff)
downloademacs-14e76ac97c890e51353046854a93b72053c0b926.tar.gz
emacs-14e76ac97c890e51353046854a93b72053c0b926.zip
(run_hook_list_with_args): Undo last change.
-rw-r--r--lisp/ChangeLog18
-rw-r--r--src/lisp.h1
2 files changed, 19 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 2b0ccb217d9..1f6354110a2 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -6,6 +6,24 @@
6 6
72001-11-30 Stefan Monnier <monnier@cs.yale.edu> 72001-11-30 Stefan Monnier <monnier@cs.yale.edu>
8 8
9 * mail/smtpmail.el: Use with-current-buffer.
10 (message-make-date, message-make-message-id): Autoload when needed.
11 (smtpmail-send-it): Use them to add `Date:' and `Message-Id:'
12 headers when missing.
13
14 * international/encoded-kb.el (encoded-kbd-mode):
15 Use define-minor-mode.
16
17 * enriched.el (enriched-mode): Use define-minor-mode.
18 Use dolist and pop and push.
19
20 * info.el (Info-find-node-2): Don't call info-insert-file-contents
21 with the `visit' argument.
22 (Info-extract-menu-node-name): Use `replace-regexps-in-string'.
23
24 * progmodes/hideif.el (hide-ifdef-mode): Only modify
25 `change-major-mode-hook' locally. Reset invisibility spec.
26
9 * man.el (Man-build-section-alist): Remove last Man-match-substring. 27 * man.el (Man-build-section-alist): Remove last Man-match-substring.
10 28
112001-11-30 Kai Gro,A_(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE> 292001-11-30 Kai Gro,A_(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
diff --git a/src/lisp.h b/src/lisp.h
index 89d292dd7f2..2a273760471 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -2456,6 +2456,7 @@ EXFUN (Frun_hooks, MANY);
2456EXFUN (Frun_hook_with_args, MANY); 2456EXFUN (Frun_hook_with_args, MANY);
2457EXFUN (Frun_hook_with_args_until_success, MANY); 2457EXFUN (Frun_hook_with_args_until_success, MANY);
2458EXFUN (Frun_hook_with_args_until_failure, MANY); 2458EXFUN (Frun_hook_with_args_until_failure, MANY);
2459extern Lisp_Object run_hook_list_with_args P_ ((Lisp_Object, int, Lisp_Object *));
2459extern void run_hook_with_args_2 P_ ((Lisp_Object, Lisp_Object, Lisp_Object)); 2460extern void run_hook_with_args_2 P_ ((Lisp_Object, Lisp_Object, Lisp_Object));
2460EXFUN (Fand, UNEVALLED); 2461EXFUN (Fand, UNEVALLED);
2461EXFUN (For, UNEVALLED); 2462EXFUN (For, UNEVALLED);