Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
c70815f1
Commit
c70815f1
authored
Mar 17, 2010
by
Glenn Morris
Browse files
* emacs-lisp/autoload.el (autoload-rubric): Doc fix.
parent
84d0a5f8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
lisp/ChangeLog
lisp/ChangeLog
+2
-0
lisp/emacs-lisp/autoload.el
lisp/emacs-lisp/autoload.el
+7
-3
No files found.
lisp/ChangeLog
View file @
c70815f1
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.
...
...
lisp/emacs-lisp/autoload.el
View file @
c70815f1
;; 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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment