diff options
Diffstat (limited to 'Emacs/.config/emacs')
-rw-r--r-- | Emacs/.config/emacs/elisp/eshell-additions.el | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Emacs/.config/emacs/elisp/eshell-additions.el b/Emacs/.config/emacs/elisp/eshell-additions.el index 51cdf21..f22f05e 100644 --- a/Emacs/.config/emacs/elisp/eshell-additions.el +++ b/Emacs/.config/emacs/elisp/eshell-additions.el @@ -40,10 +40,9 @@ "Change to directory `project-root'" (if (project-current) (eshell/cd (list (project-root (project-current)))) - (let ((error-msg (propertize "Error" 'font-lock-face - '(:foreground "red")))) - (eshell/echo - (format "[%s]: No project in current directory" error-msg))))) + (eshell/echo + (format "[%s]: No project in current directory" + (propertize "Error" 'font-lock-face '(:foreground "red")))))) (defun eshell/sudo-switch (&rest args) "Switch to a tramp connection sudo in the current directory" |