diff options
author | Jim Blandy <jimb@redhat.com> | 1992-08-05 05:01:42 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1992-08-05 05:01:42 +0000 |
commit | 73a73a38768b279ee200208ae7ec9c2db60b080b (patch) | |
tree | c12c203e97c55b13eab54c272ff0dc34f2071f37 /lisp/emacs-lisp | |
parent | df8a44dd8a72d29cb0daff4913bf5868ba955b6f (diff) | |
download | emacs-73a73a38768b279ee200208ae7ec9c2db60b080b.tar.gz emacs-73a73a38768b279ee200208ae7ec9c2db60b080b.tar.bz2 emacs-73a73a38768b279ee200208ae7ec9c2db60b080b.zip |
*** empty log message ***
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index f9bbf4d6464..e878f5dea5f 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -242,8 +242,7 @@ If it is 'byte, then only byte-level optimizations will be logged.") of `message.'") (defconst byte-compile-warning-types '(redefine callargs free-vars unresolved)) -(defvar byte-compile-warnings (if noninteractive nil - (delq 'free-vars byte-compile-warning-types)) +(defvar byte-compile-warnings (not noninteractive) "*List of warnings that the byte-compiler should issue (t for all). Valid elements of this list are: `free-vars' (references to variables not in the |