public
Description: A mac-oriented emacs configuration bundle with batteries included: check out as ~/.emacs.d
Homepage: http://www.sanityinc.com/
Clone URL: git://github.com/purcell/emacs.d.git
purcell (author)
Sun Nov 08 01:28:35 -0800 2009
commit  2911fe29ab9fdbad192aee7caf48d75f98ca851d
tree    fb797f2e790d6fa4b51feedffb593c182a04b9b6
parent  ffd4ae89988e8638c7fd4fb8ff1ae0c60a9e464d
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)