branch: elpa/dracula-theme
commit 18846c490137127b0e0d2a45e361730a795ec97c
Author: Étienne Deparis <[email protected]>
Commit: Étienne Deparis <[email protected]>
Little change to test files
---
start_emacs_test.sh | 2 +-
test-profile.el | 7 +++++--
2 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/start_emacs_test.sh b/start_emacs_test.sh
index 55e7cdd..37ed084 100755
--- a/start_emacs_test.sh
+++ b/start_emacs_test.sh
@@ -20,4 +20,4 @@ if [ -n "$COLOR" ]; then
else
echo "Run as a graphical window"
fi
-$EMACS -Q --debug-init -l test-profile.el $ARGS
+$EMACS -Q --debug-init -L $(pwd) -l test-profile.el $ARGS
diff --git a/test-profile.el b/test-profile.el
index e405d6c..0718cb4 100644
--- a/test-profile.el
+++ b/test-profile.el
@@ -1,7 +1,10 @@
(advice-add #'x-apply-session-resources :override #'ignore)
(setq make-backup-files nil
auto-save-default nil
- visible-bell t)
+ visible-bell t
+ warning-minimum-level :debug
+ warning-minimum-log-level :debug)
+(toggle-debug-on-error)
-(load-file "dracula-theme.el")
+(load "dracula-theme")
(load-theme 'dracula t)