From fd86bfb0272419bec19d00943649bd44c9105c13 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sat, 26 May 2018 03:02:15 +0200 Subject: [PATCH] Fix load-path not including site-lisp directories This would cause plugins like mu4e to not be detected and included in the cached load-path generated by doom-package-autoload-file. --- bin/doom | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/doom b/bin/doom index ec26c7e55..e1f1d74e7 100755 --- a/bin/doom +++ b/bin/doom @@ -4,8 +4,8 @@ ":"; [[ $VERSION == *\ 2[0-2].[0-1].[0-9] ]] && { echo "You're running $VERSION"; echo "That version is too old to run Doom. Check your PATH"; echo; exit 2; } ":"; DOOMDIR=$(dirname "${BASH_SOURCE:-${(%):-%x}}")/.. ":"; [[ $1 == doc || $1 == doctor ]] && { cd "$DOOMDIR"; exec emacs --script bin/doom-doctor; exit 0; } -":"; [[ $1 == run ]] && { cd "$DOOMDIR"; shift; exec emacs -Q -l bin/doom "$@"; exit 0; } -":"; exec emacs --quick --script "$0" -- $@ +":"; [[ $1 == run ]] && { cd "$DOOMDIR"; shift; exec emacs -q --no-splash -l bin/doom "$@"; exit 0; } +":"; exec emacs --script "$0" -- $@ ":"; exit 0 (defun usage ()