Changeset 4079 for trunk/lisp/emacs-lisp/bytecomp.el
- Timestamp:
- 05/13/06 11:31:18 (3 years ago)
- Files:
-
- trunk/lisp/emacs-lisp/bytecomp.el (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/emacs-lisp/bytecomp.el
r4058 r4079 294 294 When this option is true, if you load the compiled file and then move it, 295 295 the functions you loaded will not be able to run.") 296 ;;;###autoload(put 'byte-compile-dynamic 'safe-local-variable 'booleanp) 296 297 297 298 (defcustom byte-compile-dynamic-docstrings t … … 312 313 :group 'bytecomp 313 314 :type 'boolean) 315 ;;;###autoload(put 'byte-compile-dynamic-docstrings 'safe-local-variable 'booleanp) 314 316 315 317 (defcustom byte-optimize-log nil … … 356 358 (const obsolete) (const noruntime) 357 359 (const cl-functions) (const interactive-only)))) 360 ;;;###autoload(put 'byte-compile-warnings 'safe-local-variable 'booleanp) 358 361 359 362 (defvar byte-compile-interactive-only-functions … … 1590 1593 1591 1594 ;; Local Variables:\n;; no-byte-compile: t\n;; End: ") 1595 ;;;###autoload(put 'no-byte-compile 'safe-local-variable 'booleanp) 1592 1596 1593 1597 ;;;###autoload
