Mercurial > hg > xemacs-beta
view lisp/vm/vm-byteopts.el @ 147:e186c2b7192d xemacs-20-2
Added tag r20-2p1 for changeset 2af401a6ecca
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:34:48 +0200 |
parents | 376386a54a3c |
children |
line wrap: on
line source
(provide 'vm-byteopts) ;; get the compiler loaded so we can undo some of the things that ;; happen when it's loaded. (load "bytecomp" t t nil) ;; Emacs 19 byte compiler complains about too much stuff by default. ;; Turn off most of the warnings here. (setq byte-compile-warnings '(free-vars)) ;; need to use these variables for v18 support. ;; stifle the compiler. (put 'inhibit-local-variables 'byte-obsolete-variable nil) ;; Turn off dynamic docstrings and lazy function loading. This ;; is a new feature of FSF Emacs 19.29, and is incompatible ;; with pre-19.29 versions of FSF Emacs and all version of Lucid ;; Emacs / XEmacs. I like being able to share .elc files between ;; different v19 Emacses. (setq byte-compile-dynamic nil) (setq byte-compile-dynamic-docstrings nil)