diff options
author | Andreas Schwab <schwab@suse.de> | 1998-04-14 10:43:27 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 1998-04-14 10:43:27 +0000 |
commit | aa6356917b3e06e6c4589ed1ddb61895b80c52fb (patch) | |
tree | 9c97bf613722b75eb0483144f5ba9eb27c2e0863 /lisp/emacs-lisp | |
parent | f38514a1afe3c0d381ea68d42ea7ae3b73a9b270 (diff) | |
download | emacs-aa6356917b3e06e6c4589ed1ddb61895b80c52fb.tar.gz emacs-aa6356917b3e06e6c4589ed1ddb61895b80c52fb.tar.bz2 emacs-aa6356917b3e06e6c4589ed1ddb61895b80c52fb.zip |
(byte-compile-warnings): Fix customize
type.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 4487b97b63b..2d8fd7bb0f3 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -9,7 +9,7 @@ ;;; This version incorporates changes up to version 2.10 of the ;;; Zawinski-Furuseth compiler. -(defconst byte-compile-version "$Revision: 2.37 $") +(defconst byte-compile-version "$Revision: 2.38 $") ;; This file is part of GNU Emacs. @@ -336,9 +336,11 @@ Elements of the list may be be: See also the macro `byte-compiler-options'." :group 'bytecomp - :type '(set (const free-vars) (const unresolved) - (const callargs) (const redefined) - (const obsolete))) + :type '(choice (const :tag "All" t) + (set :menu-tag "Some" + (const free-vars) (const unresolved) + (const callargs) (const redefined) + (const obsolete)))) (defcustom byte-compile-generate-call-tree nil "*Non-nil means collect call-graph information when compiling. |