File: vm-byteopts.el

package info (click to toggle)
xemacs20 20.4-13
  • links: PTS
  • area: main
  • in suites: slink
  • size: 67,324 kB
  • ctags: 57,643
  • sloc: lisp: 586,197; ansic: 184,662; sh: 4,296; asm: 3,179; makefile: 2,021; perl: 1,059; csh: 96; sed: 22
file content (18 lines) | stat: -rw-r--r-- 781 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(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)