summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-04-21 09:36:30 -0500
committerCase Duckworth2021-04-21 09:36:30 -0500
commit180fdac959cf75271206362af44835357f5f26f7 (patch)
treea228609a30e8661f4f5c775d362cf5908f78bff0 /init.el
parentMerge branch 'main' of https://tildegit.org/acdw/emacs (diff)
downloademacs-180fdac959cf75271206362af44835357f5f26f7.tar.gz
emacs-180fdac959cf75271206362af44835357f5f26f7.zip
Fix boundp check in eshell-setup
Diffstat (limited to 'init.el')
-rw-r--r--init.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/init.el b/init.el index e2c851a..f728603 100644 --- a/init.el +++ b/init.el
@@ -428,7 +428,7 @@
428 (hook-defun eshell-setup 'eshell-mode-hook 428 (hook-defun eshell-setup 'eshell-mode-hook
429 (define-key eshell-mode-map (kbd "C-d") 429 (define-key eshell-mode-map (kbd "C-d")
430 #'eshell-quit-or-delete-char) 430 #'eshell-quit-or-delete-char)
431 (when (fboundp simple-modeline--mode-line) 431 (when (boundp 'simple-modeline--mode-line)
432 (setq mode-line-format '(:eval simple-modeline--mode-line))))) 432 (setq mode-line-format '(:eval simple-modeline--mode-line)))))
433 433
434(setup ediff 434(setup ediff