]> git.eshelyaron.com Git - emacs.git/commitdiff
(eval-after-load): Doc fix.
authorDave Love <fx@gnu.org>
Wed, 20 Dec 2000 20:09:59 +0000 (20:09 +0000)
committerDave Love <fx@gnu.org>
Wed, 20 Dec 2000 20:09:59 +0000 (20:09 +0000)
lisp/ChangeLog
lisp/subr.el

index 50f4982eabe77c10a215dbe4c6713e5ec5c46c07..a42840ea39a6ced376eee0ff64bbf0beb067cf36 100644 (file)
@@ -1,3 +1,7 @@
+2000-12-20  Dave Love  <fx@gnu.org>
+
+       * subr.el (eval-after-load): Doc fix.
+
 2000-12-20  Kenichi Handa  <handa@etl.go.jp>
 
        * jka-compr.el (jka-compr-partial-uncompress): Don't use `concat'
index 6abec8c5b416eb9e8199a6723ca34051fd9415ea..087b8cfcd0f29e72aa835a480b3a991c48e10081 100644 (file)
@@ -787,7 +787,9 @@ other hooks, such as major mode hooks, can do the job."
 This makes or adds to an entry on `after-load-alist'.
 If FILE is already loaded, evaluate FORM right now.
 It does nothing if FORM is already on the list for FILE.
-FILE should be the name of a library, with no directory name."
+FILE must match exactly.  Normally FILE is the name of a library,
+with no directory or extension specified, since that is how `load'
+is normally called."
   ;; Make sure there is an element for FILE.
   (or (assoc file after-load-alist)
       (setq after-load-alist (cons (list file) after-load-alist)))