Mercurial > emacs
changeset 21510:daf7dfe93205
(byte-compile-warnings): Fix customize
type.
author | Andreas Schwab <schwab@suse.de> |
---|---|
date | Tue, 14 Apr 1998 10:43:27 +0000 |
parents | 03de32438f5a |
children | f9db3163ccd6 |
files | lisp/emacs-lisp/bytecomp.el |
diffstat | 1 files changed, 6 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/bytecomp.el Tue Apr 14 10:37:40 1998 +0000 +++ b/lisp/emacs-lisp/bytecomp.el Tue Apr 14 10:43:27 1998 +0000 @@ -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 @@ 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.