purcell / emacs.d

A mac-oriented emacs configuration bundle with batteries included: check out as ~/.emacs.d

This URL has Read+Write access

emacs.d / init-byte-code-cache.el
100644 11 lines (8 sloc) 0.439 kb
1
2
3
4
5
6
7
8
9
10
11
(setq byte-compile-warnings t)
(setq byte-cache-directory nil)
(setq bcc-enabled-on-save t)
(setq bcc-blacklist '("/\\.recentf$" "/history$" "/\\.ecb-user-layouts\\.el$" "/\\.session$"
                      "/\\.emacs-project$" "/\\.emacs\\.desktop$" "/custom\\.el$" "/init\\.el$"
                      "/\\.ido\\.last$" "/\\.ecb-tip-of-day\\.el$" "/\\.viper$" "/\\.recentf$"))
(require 'byte-code-cache)
 
 
(provide 'init-byte-code-cache)