summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/checkdoc.el
diff options
context:
space:
mode:
authorDan Nicolaescu <dann@ics.uci.edu>2007-12-25 19:21:38 +0000
committerDan Nicolaescu <dann@ics.uci.edu>2007-12-25 19:21:38 +0000
commitd31e8e871c1942771b8b1296338cde5434882e84 (patch)
tree22ac7ce23250a819c040fc5de6ac318bb41c5b0b /lisp/emacs-lisp/checkdoc.el
parent74d85a08a614f72a44f4bbbe01ccae67b7b5b080 (diff)
downloademacs-d31e8e871c1942771b8b1296338cde5434882e84.tar.gz
emacs-d31e8e871c1942771b8b1296338cde5434882e84.tar.bz2
emacs-d31e8e871c1942771b8b1296338cde5434882e84.zip
* calculator.el:
* dframe.el: * iswitchb.el: * whitespace.el: * winner.el: * emacs-lisp/checkdoc.el: * mail/feedmail.el: * net/quickurl.el: * obsolete/fast-lock.el: * play/5x5.el: * progmodes/delphi.el: * progmodes/idlw-shell.el: * progmodes/idlwave.el: * textmodes/artist.el: * textmodes/ispell.el: * textmodes/texinfmt.el: * textmodes/texinfo.el: Remove obsolete definitions of backward compatibility macros for defcustom, defgroup, defface, when, unless, with-current-buffer and with-temp-message.
Diffstat (limited to 'lisp/emacs-lisp/checkdoc.el')
-rw-r--r--lisp/emacs-lisp/checkdoc.el15
1 files changed, 0 insertions, 15 deletions
diff --git a/lisp/emacs-lisp/checkdoc.el b/lisp/emacs-lisp/checkdoc.el
index 742e13412bb..ad52466377e 100644
--- a/lisp/emacs-lisp/checkdoc.el
+++ b/lisp/emacs-lisp/checkdoc.el
@@ -175,21 +175,6 @@
(defvar checkdoc-version "0.6.1"
"Release version of checkdoc you are currently running.")
-;; From custom web page for compatibility between versions of custom:
-(eval-and-compile
- (condition-case ()
- (require 'custom)
- (error nil))
- (if (and (featurep 'custom) (fboundp 'custom-declare-variable))
- nil ;; We've got what we needed
- ;; We have the old custom-library, hack around it!
- (defmacro defgroup (&rest args)
- nil)
- (defmacro custom-add-option (&rest args)
- nil)
- (defmacro defcustom (var value doc &rest args)
- `(defvar ,var ,value ,doc))))
-
(defvar compilation-error-regexp-alist)
(defvar compilation-mode-font-lock-keywords)