summaryrefslogtreecommitdiff
path: root/lisp/button.el
diff options
context:
space:
mode:
authorDan Nicolaescu <dann@ics.uci.edu>2008-03-14 17:42:18 +0000
committerDan Nicolaescu <dann@ics.uci.edu>2008-03-14 17:42:18 +0000
commitf31b125795291270828b41185f663584ae95e518 (patch)
treec6ba59d32aea8869b7a0a7e985e9b9c6190adb21 /lisp/button.el
parent294f1153b56701321c2dd9ef1aa2483b17dc4bf8 (diff)
downloademacs-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/button.el')
-rw-r--r--lisp/button.el7
1 files changed, 0 insertions, 7 deletions
diff --git a/lisp/button.el b/lisp/button.el
index df954871985..5d20ae7900a 100644
--- a/lisp/button.el
+++ b/lisp/button.el
@@ -61,7 +61,6 @@
"Default face used for buttons."
:group 'basic-faces)
-;;;###autoload
(defvar button-map
(let ((map (make-sparse-keymap)))
;; The following definition needs to avoid using escape sequences that
@@ -71,7 +70,6 @@
map)
"Keymap used by buttons.")
-;;;###autoload
(defvar button-buffer-map
(let ((map (make-sparse-keymap)))
(define-key map [?\t] 'forward-button)
@@ -116,7 +114,6 @@ Buttons inherit them by setting their `category' property to that symbol."
(or (get type 'button-category-symbol)
(error "Unknown button type `%s'" type)))
-;;;###autoload
(defun define-button-type (name &rest properties)
"Define a `button type' called NAME (a symbol).
The remaining arguments form a sequence of PROPERTY VALUE pairs,
@@ -247,7 +244,6 @@ the normal action is used instead."
;; Creating overlay buttons
-;;;###autoload
(defun make-button (beg end &rest properties)
"Make a button from BEG to END in the current buffer.
The remaining arguments form a sequence of PROPERTY VALUE pairs,
@@ -269,7 +265,6 @@ Also see `make-text-button', `insert-button'."
;; OVERLAY is the button, so return it
overlay))
-;;;###autoload
(defun insert-button (label &rest properties)
"Insert a button with the label LABEL.
The remaining arguments form a sequence of PROPERTY VALUE pairs,
@@ -287,7 +282,6 @@ Also see `insert-text-button', `make-button'."
;; Creating text-property buttons
-;;;###autoload
(defun make-text-button (beg end &rest properties)
"Make a button from BEG to END in the current buffer.
The remaining arguments form a sequence of PROPERTY VALUE pairs,
@@ -326,7 +320,6 @@ Also see `insert-text-button'."
;; Return something that can be used to get at the button.
beg)
-;;;###autoload
(defun insert-text-button (label &rest properties)
"Insert a button with the label LABEL.
The remaining arguments form a sequence of PROPERTY VALUE pairs,