diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2008-03-14 17:42:18 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2008-03-14 17:42:18 +0000 |
commit | f31b125795291270828b41185f663584ae95e518 (patch) | |
tree | c6ba59d32aea8869b7a0a7e985e9b9c6190adb21 /lisp/emacs-lisp/backquote.el | |
parent | 294f1153b56701321c2dd9ef1aa2483b17dc4bf8 (diff) | |
download | emacs-f31b125795291270828b41185f663584ae95e518.tar.gz |
* faces.el (xw-defined-colors):
* simple.el (widget-convert, shell-mode): Declare as functions
instead of autoloading.
* abbrev.el:
* button.el:
* cus-face.el:
* ediff-hook.el:
* emacs-lisp/backquote.el:
* emacs-lisp/timer.el:
* facemenu.el:
* faces.el:
* menu-bar.el:
* simple.el:
* subr.el:
* textmodes/fill.el:
* textmodes/paragraphs.el: Remove autoloads, redundant when the
files are preloaded.
Diffstat (limited to 'lisp/emacs-lisp/backquote.el')
-rw-r--r-- | lisp/emacs-lisp/backquote.el | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/backquote.el b/lisp/emacs-lisp/backquote.el index e0988fe5e90..68ef78aed5c 100644 --- a/lisp/emacs-lisp/backquote.el +++ b/lisp/emacs-lisp/backquote.el @@ -91,7 +91,6 @@ For example (backquote-list* 'a 'b 'c) => (a b . c)" (defconst backquote-splice-symbol '\,@ "Symbol used to represent a splice inside a backquote.") -;;;###autoload (defmacro backquote (structure) "Argument STRUCTURE describes a template to build. @@ -110,7 +109,6 @@ Vectors work just like lists. Nested backquotes are permitted." ;; GNU Emacs has no reader macros -;;;###autoload (defalias '\` (symbol-function 'backquote)) ;; backquote-process returns a dotted-pair of a tag (0, 1, or 2) and |