diff options
author | Glenn Morris <rgm@gnu.org> | 2010-03-17 23:47:12 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2010-03-17 23:47:12 -0700 |
commit | c70815f186a5a306e5c0adfe20a534d82346429e (patch) | |
tree | 8e012ff6d4d9379bcf861a3279791d1a8029c529 /lisp/emacs-lisp | |
parent | 84d0a5f881b8e2d11ef537dbda4acfe64c067e93 (diff) | |
download | emacs-c70815f186a5a306e5c0adfe20a534d82346429e.tar.gz emacs-c70815f186a5a306e5c0adfe20a534d82346429e.tar.bz2 emacs-c70815f186a5a306e5c0adfe20a534d82346429e.zip |
* emacs-lisp/autoload.el (autoload-rubric): Doc fix.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/autoload.el | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/autoload.el b/lisp/emacs-lisp/autoload.el index c985aae07b6..044969799b0 100644 --- a/lisp/emacs-lisp/autoload.el +++ b/lisp/emacs-lisp/autoload.el @@ -1,7 +1,8 @@ ;; autoload.el --- maintain autoloads in loaddefs.el ;; Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2001, 2002, 2003, -;; 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. +;; 2004, 2005, 2006, 2007, 2008, 2009, 2010 +;; Free Software Foundation, Inc. ;; Author: Roland McGrath <roland@gnu.org> ;; Keywords: maint @@ -258,14 +259,17 @@ put the output in." TYPE (default \"autoloads\") is a string stating the type of information contained in FILE. If FEATURE is non-nil, FILE will provide a feature. FEATURE may be a string naming the -feature, otherwise it will be based on FILE's name." +feature, otherwise it will be based on FILE's name. + +At present, a feature is in fact always provided, but this should +not be relied upon." (let ((basename (file-name-nondirectory file))) (concat ";;; " basename " --- automatically extracted " (or type "autoloads") "\n" ";;\n" ";;; Code:\n\n" "\n" - ;; This is used outside of autoload.el. + ;; This is used outside of autoload.el, eg cus-dep, finder. "(provide '" (if (stringp feature) feature |