diff options
author | Stefan Kangas <stefan@marxist.se> | 2020-12-02 15:49:56 +0100 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2020-12-03 15:06:13 +0100 |
commit | fddf68cd81002817bde016578db6bf0e4b11717f (patch) | |
tree | 8709687fd7b94297043da06ee5b3fcf44a62da2f /lisp/emacs-lisp | |
parent | 4b25ffd3b8ffb854c2458efc4914829ead9a0f79 (diff) | |
download | emacs-fddf68cd81002817bde016578db6bf0e4b11717f.tar.gz emacs-fddf68cd81002817bde016578db6bf0e4b11717f.tar.bz2 emacs-fddf68cd81002817bde016578db6bf0e4b11717f.zip |
Remove redundant requires of 'button'
* lisp/apropos.el:
* lisp/emacs-lisp/cl-print.el:
* lisp/emacs-lisp/debug.el:
* lisp/emacs-lisp/ert.el:
* lisp/emacs-lisp/shadow.el:
* lisp/facemenu.el:
* lisp/help-mode.el:
* lisp/man.el:
* lisp/progmodes/etags.el:
* lisp/textmodes/bibtex.el:
* lisp/woman.el: Don't require 'button'; it is preloaded since version
23.1.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/cl-print.el | 2 | ||||
-rw-r--r-- | lisp/emacs-lisp/debug.el | 1 | ||||
-rw-r--r-- | lisp/emacs-lisp/ert.el | 1 | ||||
-rw-r--r-- | lisp/emacs-lisp/shadow.el | 1 |
4 files changed, 0 insertions, 5 deletions
diff --git a/lisp/emacs-lisp/cl-print.el b/lisp/emacs-lisp/cl-print.el index 1043cf7b175..0375c57f77d 100644 --- a/lisp/emacs-lisp/cl-print.el +++ b/lisp/emacs-lisp/cl-print.el @@ -33,8 +33,6 @@ ;;; Code: -(require 'button) - (defvar cl-print-readably nil "If non-nil, try and make sure the result can be `read'.") diff --git a/lisp/emacs-lisp/debug.el b/lisp/emacs-lisp/debug.el index 0e4135b253e..11ef836563d 100644 --- a/lisp/emacs-lisp/debug.el +++ b/lisp/emacs-lisp/debug.el @@ -29,7 +29,6 @@ (require 'cl-lib) (require 'backtrace) -(require 'button) (defgroup debugger nil "Debuggers and related commands for Emacs." diff --git a/lisp/emacs-lisp/ert.el b/lisp/emacs-lisp/ert.el index baa04f2c6af..7442a247f9e 100644 --- a/lisp/emacs-lisp/ert.el +++ b/lisp/emacs-lisp/ert.el @@ -58,7 +58,6 @@ ;;; Code: (require 'cl-lib) -(require 'button) (require 'debug) (require 'backtrace) (require 'easymenu) diff --git a/lisp/emacs-lisp/shadow.el b/lisp/emacs-lisp/shadow.el index dd614dd792c..f1863869dd3 100644 --- a/lisp/emacs-lisp/shadow.el +++ b/lisp/emacs-lisp/shadow.el @@ -183,7 +183,6 @@ See the documentation for `list-load-path-shadows' for further information." buffer-read-only t)) ;; TODO use text-properties instead, a la dired. -(require 'button) (define-button-type 'load-path-shadows-find-file 'follow-link t ;; 'face 'default |