diff options
-rw-r--r-- | emacs.d/init.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el index 6bbcee3..d7c9ff1 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -33,6 +33,7 @@ (setq-default tab-width 4) (setq-default indent-tabs-mode nil) (setq-default scroll-margin 3) +(setq-default show-trailing-whitespace t) (global-set-key "\C-m" 'newline-and-indent) (delete-selection-mode 1) @@ -174,7 +175,7 @@ (bury-buffer "*compilation*") (winner-undo) (message "Build successful.")) - (t + (t (message "Compilation exited abnormally: %s" string)))) (setq compilation-finish-functions 'compile-autoclose) |