diff options
| author | Stefan Monnier | 2001-12-01 18:16:58 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2001-12-01 18:16:58 +0000 |
| commit | 14e76ac97c890e51353046854a93b72053c0b926 (patch) | |
| tree | 9d7fabf4dec579120d821573abec803a075926f9 | |
| parent | f4c3e044d486ca8e2a328e09a6af8692bb4fe859 (diff) | |
| download | emacs-14e76ac97c890e51353046854a93b72053c0b926.tar.gz emacs-14e76ac97c890e51353046854a93b72053c0b926.zip | |
(run_hook_list_with_args): Undo last change.
| -rw-r--r-- | lisp/ChangeLog | 18 | ||||
| -rw-r--r-- | src/lisp.h | 1 |
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 | ||
| 7 | 2001-11-30 Stefan Monnier <monnier@cs.yale.edu> | 7 | 2001-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 | ||
| 11 | 2001-11-30 Kai Gro,A_(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE> | 29 | 2001-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); | |||
| 2456 | EXFUN (Frun_hook_with_args, MANY); | 2456 | EXFUN (Frun_hook_with_args, MANY); |
| 2457 | EXFUN (Frun_hook_with_args_until_success, MANY); | 2457 | EXFUN (Frun_hook_with_args_until_success, MANY); |
| 2458 | EXFUN (Frun_hook_with_args_until_failure, MANY); | 2458 | EXFUN (Frun_hook_with_args_until_failure, MANY); |
| 2459 | extern Lisp_Object run_hook_list_with_args P_ ((Lisp_Object, int, Lisp_Object *)); | ||
| 2459 | extern void run_hook_with_args_2 P_ ((Lisp_Object, Lisp_Object, Lisp_Object)); | 2460 | extern void run_hook_with_args_2 P_ ((Lisp_Object, Lisp_Object, Lisp_Object)); |
| 2460 | EXFUN (Fand, UNEVALLED); | 2461 | EXFUN (Fand, UNEVALLED); |
| 2461 | EXFUN (For, UNEVALLED); | 2462 | EXFUN (For, UNEVALLED); |