diff options
author | Lars Magne Ingebrigtsen <larsi@gnus.org> | 2011-09-11 04:56:39 +0200 |
---|---|---|
committer | Lars Magne Ingebrigtsen <larsi@gnus.org> | 2011-09-11 04:56:39 +0200 |
commit | 0b1c89c19afb8cc9132212279dc4a4a4927bb5d7 (patch) | |
tree | 59b2d0cceb57886054b04f599ae3ee1831e6d558 /lisp/subr.el | |
parent | 77549ea89aa3398920a909548f5e2eefed012866 (diff) | |
download | emacs-0b1c89c19afb8cc9132212279dc4a4a4927bb5d7.tar.gz |
* subr.el (eval-after-load): Doc string clarification
Fixes: debbugs:9125
Diffstat (limited to 'lisp/subr.el')
-rw-r--r-- | lisp/subr.el | 2 |
1 files changed, 1 insertions, 1 deletions
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." (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. |