leftover from the previous commit

This commit is contained in:
Bozhidar Batsov 2011-10-11 21:24:22 +03:00
parent df61675d06
commit 13ce41a3e3
4 changed files with 7 additions and 7 deletions

View file

@ -348,7 +348,7 @@ there's a region, all lines that region covers will be duplicated."
(defun prelude-recompile-init ()
"Byte-compile all your dotfiles again."
(interactive)
(byte-recompile-directory emacs-user-dir 0)
(byte-recompile-directory user-emacs-directory 0)
(byte-recompile-directory prelude-vendor-dir 0))
(defun prelude-regen-autoloads (&optional force-regen)

View file

@ -93,7 +93,7 @@
(savehist-mode t) ;; do customization before activation
;; save recent files
(setq recentf-save-file (concat prelude-dir "recentf") ;; keep ~/ clean
(setq recentf-save-file (concat user-emacs-directory "recentf") ;; keep ~/ clean
recentf-max-saved-items 100 ;; max save 100
recentf-max-menu-items 15) ;; max 15 in menu
(recentf-mode t) ;; turn it on

View file

@ -59,7 +59,7 @@
(fset 'yes-or-no-p 'y-or-n-p)
;; custom Emacs 24 color themes support
(add-to-list 'custom-theme-load-path (concat prelude-dir "themes/"))
(add-to-list 'custom-theme-load-path (concat user-emacs-directory "themes/"))
(load-theme 'zenburn t)
(provide 'prelude-ui)