From 17f73baaa232a4b522d251ede3bd0a900cd6d440 Mon Sep 17 00:00:00 2001 From: Blendoit Date: Sat, 15 May 2021 14:37:31 -0700 Subject: Remove byte compilation. --- smart-documents.org | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/smart-documents.org b/smart-documents.org index 5519b76..54f1f09 100644 --- a/smart-documents.org +++ b/smart-documents.org @@ -152,20 +152,7 @@ We begin by defining a function to open this very file. (defun my/find-literate-config () "Jump to this very file." (interactive) - (find-file (concat my/literate-config ".org"))) -#+END_SRC - -** Speeding up the next startup - -#+BEGIN_SRC emacs-lisp :tangle no -(defun byte-compile-literate-config () - "Byte compile our literate configuration file." - (delete-file (concat my/literate-config ".elc")) - (delete-file (concat my/literate-config ".el")) - (org-babel-tangle-file (concat my/literate-config ".org")) - (byte-compile-file (concat my/literate-config ".el"))) - -(add-hook 'kill-emacs-hook 'byte-compile-literate-config) + (find-file my/literate-config)) #+END_SRC ** Meta-files -- cgit v1.2.3