* 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 f321ae3..e9de6bc 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 35fac1f..c11db6a 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.