]> git.eshelyaron.com Git - emacs.git/commitdiff
* subr.el (eval-after-load): Doc string clarification
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Sun, 11 Sep 2011 02:56:39 +0000 (04:56 +0200)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Sun, 11 Sep 2011 02:56:39 +0000 (04:56 +0200)
Fixes: debbugs:9125
lisp/ChangeLog
lisp/subr.el

index f321ae359bdfbcb129f5bf27053a6429b66f5225..e9de6bcfb1fa83c0463a980e4edfa9fc48096c10 100644 (file)
@@ -1,5 +1,7 @@
 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
+       * subr.el (eval-after-load): Doc string clarification (bug#9125).
+
        * image-mode.el (image-next-line): The line parameter is mandatory
        (bug#9258).
 
index 35fac1fe8f2bb9e4f02f893605d3ce6657506d64..c11db6ad949c9e9bdb738633a2a7b3eec4e10a79 100644 (file)
@@ -1747,7 +1747,7 @@ Return nil if there isn't one."
 
 (put 'eval-after-load 'lisp-indent-function 1)
 (defun eval-after-load (file form)
-  "Arrange that, if FILE is ever loaded, FORM will be run at that time.
+  "Arrange that if FILE is loaded, FORM will be run immediately afterwards.
 If FILE is already loaded, evaluate FORM right now.
 
 If a matching file is loaded again, FORM will be evaluated again.