From 8afb66952ed1aae0782617fb95877516c0346859 Mon Sep 17 00:00:00 2001 From: Jessie Hildebrandt Date: Tue, 16 Apr 2019 13:10:29 +0000 Subject: [PATCH] Add byte-compilation step to update-init-file --- init.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index d3aecb2..c1162e5 100644 --- a/init.el +++ b/init.el @@ -265,7 +265,8 @@ (interactive) (when (yes-or-no-p "Download latest init file from jessieh.net? ") (message "Updating init file...") - (url-copy-file "https://jessieh.net/emacs" (concat user-emacs-directory "init.el") t))) + (url-copy-file "https://jessieh.net/emacs" (concat user-emacs-directory "init.el") t) + (byte-compile-init-file)) (defun byte-compile-init-file () "Byte compile the init file."