Changeset 4085 for trunk/lisp/emacs-lisp/bytecomp.el
- Timestamp:
- 05/18/06 16:19:18 (3 years ago)
- Files:
-
- trunk/lisp/emacs-lisp/bytecomp.el (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/emacs-lisp/bytecomp.el
r4079 r4085 358 358 (const obsolete) (const noruntime) 359 359 (const cl-functions) (const interactive-only)))) 360 ;;;###autoload(put 'byte-compile-warnings 'safe-local-variable 'booleanp) 360 (put 'byte-compile-warnings 'safe-local-variable 'byte-compile-warnings-safe-p) 361 ;;;###autoload 362 (defun byte-compile-warnings-safe-p (x) 363 (or (booleanp x) 364 (and (listp x) 365 (equal (mapcar 366 (lambda (e) 367 (when (memq e '(free-vars unresolved 368 callargs redefine 369 obsolete noruntime 370 cl-functions interactive-only)) 371 e)) 372 x) 373 x)))) 361 374 362 375 (defvar byte-compile-interactive-only-functions
