comparison lisp/emacs-lisp/bytecomp.el @ 938:7a14bb062617

*** empty log message ***
author Jim Blandy <jimb@redhat.com>
date Wed, 05 Aug 1992 05:01:42 +0000
parents 52cd80cb5be1
children cc82116a8f1c
comparison
equal deleted inserted replaced
937:0f082d63bfd6 938:7a14bb062617
240 (defvar byte-compile-error-on-warn nil 240 (defvar byte-compile-error-on-warn nil
241 "*If true, the byte-compiler will report warnings with `error' instead 241 "*If true, the byte-compiler will report warnings with `error' instead
242 of `message.'") 242 of `message.'")
243 243
244 (defconst byte-compile-warning-types '(redefine callargs free-vars unresolved)) 244 (defconst byte-compile-warning-types '(redefine callargs free-vars unresolved))
245 (defvar byte-compile-warnings (if noninteractive nil 245 (defvar byte-compile-warnings (not noninteractive)
246 (delq 'free-vars byte-compile-warning-types))
247 "*List of warnings that the byte-compiler should issue (t for all). 246 "*List of warnings that the byte-compiler should issue (t for all).
248 Valid elements of this list are: 247 Valid elements of this list are:
249 `free-vars' (references to variables not in the 248 `free-vars' (references to variables not in the
250 current lexical scope) 249 current lexical scope)
251 `unresolved' (calls to unknown functions) 250 `unresolved' (calls to unknown functions)