emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs-25 85f257c: Improve documentation of 'with-eval-afte


From: Eli Zaretskii
Subject: [Emacs-diffs] emacs-25 85f257c: Improve documentation of 'with-eval-after-load'
Date: Sun, 10 Apr 2016 16:16:33 +0000

branch: emacs-25
commit 85f257c9bc5b89043b2d7019e6763e552f4c89e7
Author: Eli Zaretskii <address@hidden>
Commit: Eli Zaretskii <address@hidden>

    Improve documentation of 'with-eval-after-load'
    
    * lisp/subr.el (with-eval-after-load): Doc fix.  (Bug#23258)
---
 lisp/subr.el |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/lisp/subr.el b/lisp/subr.el
index cbcc27b..4202cc7 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -3945,7 +3945,8 @@ This function makes or adds to an entry on 
`after-load-alist'."
 (defmacro with-eval-after-load (file &rest body)
   "Execute BODY after FILE is loaded.
 FILE is normally a feature name, but it can also be a file name,
-in case that file does not provide any feature."
+in case that file does not provide any feature.  See `eval-after-load'
+for more details about the different forms of FILE and their semantics."
   (declare (indent 1) (debug t))
   `(eval-after-load ,file (lambda () ,@body)))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]