]> git.eshelyaron.com Git - emacs.git/commitdiff
* emacs-lisp/autoload.el (autoload-rubric): Doc fix.
authorGlenn Morris <rgm@gnu.org>
Thu, 18 Mar 2010 06:47:12 +0000 (23:47 -0700)
committerGlenn Morris <rgm@gnu.org>
Thu, 18 Mar 2010 06:47:12 +0000 (23:47 -0700)
lisp/ChangeLog
lisp/emacs-lisp/autoload.el

index c45096b9742142b8bae6f21b46a4684c9077d2b5..c6f2f2e5105bbc8540f92e1c0336a18ca9cec9db 100644 (file)
@@ -1,5 +1,7 @@
 2010-03-18  Glenn Morris  <rgm@gnu.org>
 
+       * emacs-lisp/autoload.el (autoload-rubric): Doc fix.
+
        * replace.el (query-replace-history): Give it a doc string.
        (map-query-replace-regexp): Use query-replace-from-history-variable
        and query-replace-to-history-variable.
index c985aae07b6f493a5b5ed1907764a6a19ac4f63b..044969799b07392fd0366fcc52359ae67b2c9af0 100644 (file)
@@ -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"
            "\f\n"
-           ;; This is used outside of autoload.el.
+           ;; This is used outside of autoload.el, eg cus-dep, finder.
            "(provide '"
            (if (stringp feature)
                feature