diff options
| author | Andreas Schwab | 1998-04-14 10:43:27 +0000 |
|---|---|---|
| committer | Andreas Schwab | 1998-04-14 10:43:27 +0000 |
| commit | aa6356917b3e06e6c4589ed1ddb61895b80c52fb (patch) | |
| tree | 9c97bf613722b75eb0483144f5ba9eb27c2e0863 | |
| parent | f38514a1afe3c0d381ea68d42ea7ae3b73a9b270 (diff) | |
| download | emacs-aa6356917b3e06e6c4589ed1ddb61895b80c52fb.tar.gz emacs-aa6356917b3e06e6c4589ed1ddb61895b80c52fb.zip | |
(byte-compile-warnings): Fix customize
type.
| -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 @@ | |||
| 9 | 9 | ||
| 10 | ;;; This version incorporates changes up to version 2.10 of the | 10 | ;;; This version incorporates changes up to version 2.10 of the |
| 11 | ;;; Zawinski-Furuseth compiler. | 11 | ;;; Zawinski-Furuseth compiler. |
| 12 | (defconst byte-compile-version "$Revision: 2.37 $") | 12 | (defconst byte-compile-version "$Revision: 2.38 $") |
| 13 | 13 | ||
| 14 | ;; This file is part of GNU Emacs. | 14 | ;; This file is part of GNU Emacs. |
| 15 | 15 | ||
| @@ -336,9 +336,11 @@ Elements of the list may be be: | |||
| 336 | 336 | ||
| 337 | See also the macro `byte-compiler-options'." | 337 | See also the macro `byte-compiler-options'." |
| 338 | :group 'bytecomp | 338 | :group 'bytecomp |
| 339 | :type '(set (const free-vars) (const unresolved) | 339 | :type '(choice (const :tag "All" t) |
| 340 | (const callargs) (const redefined) | 340 | (set :menu-tag "Some" |
| 341 | (const obsolete))) | 341 | (const free-vars) (const unresolved) |
| 342 | (const callargs) (const redefined) | ||
| 343 | (const obsolete)))) | ||
| 342 | 344 | ||
| 343 | (defcustom byte-compile-generate-call-tree nil | 345 | (defcustom byte-compile-generate-call-tree nil |
| 344 | "*Non-nil means collect call-graph information when compiling. | 346 | "*Non-nil means collect call-graph information when compiling. |