aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Magne Ingebrigtsen2011-09-11 04:56:39 +0200
committerLars Magne Ingebrigtsen2011-09-11 04:56:39 +0200
commit0b1c89c19afb8cc9132212279dc4a4a4927bb5d7 (patch)
tree59b2d0cceb57886054b04f599ae3ee1831e6d558
parent77549ea89aa3398920a909548f5e2eefed012866 (diff)
downloademacs-0b1c89c19afb8cc9132212279dc4a4a4927bb5d7.tar.gz
emacs-0b1c89c19afb8cc9132212279dc4a4a4927bb5d7.zip
* subr.el (eval-after-load): Doc string clarification
Fixes: debbugs:9125
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/subr.el2
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index f321ae359bd..e9de6bcfb1f 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org> 12011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
2 2
3 * subr.el (eval-after-load): Doc string clarification (bug#9125).
4
3 * image-mode.el (image-next-line): The line parameter is mandatory 5 * image-mode.el (image-next-line): The line parameter is mandatory
4 (bug#9258). 6 (bug#9258).
5 7
diff --git a/lisp/subr.el b/lisp/subr.el
index 35fac1fe8f2..c11db6ad949 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -1747,7 +1747,7 @@ Return nil if there isn't one."
1747 1747
1748(put 'eval-after-load 'lisp-indent-function 1) 1748(put 'eval-after-load 'lisp-indent-function 1)
1749(defun eval-after-load (file form) 1749(defun eval-after-load (file form)
1750 "Arrange that, if FILE is ever loaded, FORM will be run at that time. 1750 "Arrange that if FILE is loaded, FORM will be run immediately afterwards.
1751If FILE is already loaded, evaluate FORM right now. 1751If FILE is already loaded, evaluate FORM right now.
1752 1752
1753If a matching file is loaded again, FORM will be evaluated again. 1753If a matching file is loaded again, FORM will be evaluated again.