diff options
author | Glenn Morris <rgm@gnu.org> | 2013-05-11 16:58:36 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-05-11 16:58:36 -0700 |
commit | 0060ac73c0c2e67f4780909ed9b9600f85de4baf (patch) | |
tree | ffd55fbe8c7fc98246d03c7d85a6224b57122c28 /lisp/emacs-lisp | |
parent | 6b91f9030914b0a3455d6086497a01a55bf097d5 (diff) | |
download | emacs-0060ac73c0c2e67f4780909ed9b9600f85de4baf.tar.gz emacs-0060ac73c0c2e67f4780909ed9b9600f85de4baf.tar.bz2 emacs-0060ac73c0c2e67f4780909ed9b9600f85de4baf.zip |
* lisp/emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/autoload.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/autoload.el b/lisp/emacs-lisp/autoload.el index edaecd7ff19..dbb4a239f02 100644 --- a/lisp/emacs-lisp/autoload.el +++ b/lisp/emacs-lisp/autoload.el @@ -52,7 +52,10 @@ FormFeed character.") (defvar generated-autoload-load-name nil "Load name for `autoload' statements generated from autoload cookies. -If nil, this defaults to the file name, sans extension.") +If nil, this defaults to the file name, sans extension. +Typically, you need to set this when the directory containing the file +is not in `load-path'. +This also affects the generated cus-load.el file.") ;;;###autoload (put 'generated-autoload-load-name 'safe-local-variable 'stringp) |