diff options
author | Amin Bandali <bandali@gnu.org> | 2019-05-09 11:35:52 -0400 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2019-05-09 11:39:14 -0400 |
commit | 3bfd8640be53c1632c92ac814bb74727ecc21428 (patch) | |
tree | 9b85892c9dece3b3c4dcb4304febc67dd22b5b38 | |
parent | d9241fc2f8fad196658f5167c56b062485dcc217 (diff) | |
download | configs-3bfd8640be53c1632c92ac814bb74727ecc21428.tar.gz configs-3bfd8640be53c1632c92ac814bb74727ecc21428.tar.xz configs-3bfd8640be53c1632c92ac814bb74727ecc21428.zip |
emacs: don’t byte-compile init
going to try a non-byte-compiled init for a while; esp. now that on
emacs master i get a segfault:
-*- mode: compilation; default-directory: "~/.emacs.d/" -*-
Compilation started at Thu May 9 11:38:40
make build-init
Loading Emacs...done (0.004s)
Loading /home/amin/.emacs.d/etc/custom.el (source)...
Loading /home/amin/.emacs.d/etc/secrets...
Fatal error 11: Segmentation fault
Backtrace:
emacs(+0x132cdf)[0x55c6bd232cdf]
emacs(+0x3acdf)[0x55c6bd13acdf]
emacs(+0x3b133)[0x55c6bd13b133]
emacs(+0x131339)[0x55c6bd231339]
emacs(+0x1313ba)[0x55c6bd2313ba]
/usr/lib/libpthread.so.0(+0x124d0)[0x7f6e6c4f34d0]
/bin/sh: line 1: 28103 Segmentation fault (core dumped) emacs -Q --batch -l init.el --eval '(a/build-init)' 2>&1
make: *** [Makefile:11: build-init] Error 139
Compilation exited abnormally with code 2 at Thu May 9 11:38:42
-rw-r--r-- | .emacs.d/init.org | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.emacs.d/init.org b/.emacs.d/init.org index 1ea9fe1..cb8a540 100644 --- a/.emacs.d/init.org +++ b/.emacs.d/init.org @@ -146,7 +146,7 @@ If you would like a byte-compiled init file, set the following variable to ~t~, otherwise set it to ~nil~. #+begin_src emacs-lisp -(defvar a/byte-compiled-init t +(defvar a/byte-compiled-init nil "If non-nil, byte-(re)compile init.el on successful tangles.") #+end_src |