aboutsummaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authorMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-04-15 01:13:23 -0400
committerMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-04-15 01:13:23 -0400
commitcfa7e7c0b2e0537657f7b56cdd48eeee0c51a2a1 (patch)
treed6c339286d4ce7500029143188f397d53c40e4c9 /init.el
parentAdd `straight/` to `.gitignore` (diff)
downloadmmosmacs-cfa7e7c0b2e0537657f7b56cdd48eeee0c51a2a1.tar.gz
mmosmacs-cfa7e7c0b2e0537657f7b56cdd48eeee0c51a2a1.tar.bz2
mmosmacs-cfa7e7c0b2e0537657f7b56cdd48eeee0c51a2a1.zip
Don't load outdated code
If a `.el` file is newer than its corresponding `.elc`, load the `.el`.
Diffstat (limited to 'init.el')
-rw-r--r--init.el14
1 files changed, 14 insertions, 0 deletions
diff --git a/init.el b/init.el
index b344c83..9ab7611 100644
--- a/init.el
+++ b/init.el
@@ -31,6 +31,20 @@
31 (load bootstrap-file nil 'nomessage)) 31 (load bootstrap-file nil 'nomessage))
32 32
33 33
34;; ---------------------------------
35;; Don't load outdated code
36;; ------------------------
37;; MMOSMacs is under highly active
38;; development and undergoes
39;; freuqent changes. The newest code
40;; should always be loaded
41;; ---------------------------------
42
43;; if a `.el' file is newer than its corresponding `.elc', load the `.el'
44(setq load-prefer-newer t)
45
46
47
34 48
35;; --------------------------------------------------------------------- 49;; ---------------------------------------------------------------------
36;;; File Management 50;;; File Management