diff options
author | Miles Bader <miles@gnu.org> | 2007-12-29 02:39:17 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2007-12-29 02:39:17 +0000 |
commit | a0c92ed92d3d62d4926dafb1d595d87843df4688 (patch) | |
tree | 78f12dd6f97a0f96b846fbf08e3f8ce39a701f8e /lisp/emacs-lisp/checkdoc.el | |
parent | 9aeb99f00a02c695b14f2ee349141eb9641ca6da (diff) | |
parent | 870356897e927f380841268667a92b40fb9e6782 (diff) | |
download | emacs-a0c92ed92d3d62d4926dafb1d595d87843df4688.tar.gz emacs-a0c92ed92d3d62d4926dafb1d595d87843df4688.tar.bz2 emacs-a0c92ed92d3d62d4926dafb1d595d87843df4688.zip |
Merge from emacs--devo--0
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-306
Diffstat (limited to 'lisp/emacs-lisp/checkdoc.el')
-rw-r--r-- | lisp/emacs-lisp/checkdoc.el | 15 |
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) |