summary refs log tree commit diff stats
path: root/emacs/init.el
diff options
context:
space:
mode:
authorAlan Pearce2013-10-07 13:10:18 +0100
committerAlan Pearce2013-10-07 13:10:18 +0100
commitcb812e671e45bea0c33a7361f1bd7262f020c46c (patch)
tree0e9de7894b13f7812415e3239e4c722df4b22f60 /emacs/init.el
parent41eefb4a28f5aae4ab78e73cbcb925117b1076ea (diff)
downloaddotfiles-cb812e671e45bea0c33a7361f1bd7262f020c46c.tar.lz
dotfiles-cb812e671e45bea0c33a7361f1bd7262f020c46c.tar.zst
dotfiles-cb812e671e45bea0c33a7361f1bd7262f020c46c.zip
Emacs: remove customisation of byte-compile-dest-file for init.el
Instead, rely on installer creating a symlink to ~/projects/dotfiles/init.elc
Diffstat (limited to 'emacs/init.el')
-rw-r--r--emacs/init.el7
1 files changed, 1 insertions, 6 deletions
diff --git a/emacs/init.el b/emacs/init.el
index fd54684..76a6ac9 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -877,8 +877,7 @@ Also returns nil if pid is nil."
          ("M-Z" . zap-to-char)))
 
 (use-package ap-functions
-  :commands (ap/remove-extra-cr
-             ap/byte-compile-get-dest)
+  :commands (ap/remove-extra-cr)
   :bind (("C-x r M-w" . copy-rectangle)
          ("M-!" . shell-execute)))
 
@@ -984,10 +983,6 @@ Also returns nil if pid is nil."
 (add-hook 'lisp-mode-hook #'ap/lisp-setup)
 (add-hook 'lisp-mode-hook #'set-common-lisp-indentation)
 
-(use-package bytecomp
-  :defer t
-  :config (setq byte-compile-dest-file-function #'ap/byte-compile-get-dest))
-
 (use-package elisp-slime-nav
   :commands elisp-slime-nav-mode
   :diminish elisp-slime-nav-mode)