1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-27 07:37:33 +00:00

* subr.el (eval-after-load): Doc string clarification

Fixes: debbugs:9125
This commit is contained in:
Lars Magne Ingebrigtsen 2011-09-11 04:56:39 +02:00
parent 77549ea89a
commit 0b1c89c19a
2 changed files with 3 additions and 1 deletions

View 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).

View 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.