diff options
| author | Thomas Ulmer <thomasmulmer02@gmail.com> | 2025-12-11 23:38:10 +0000 |
|---|---|---|
| committer | Thomas Ulmer <thomasmulmer02@gmail.com> | 2025-12-11 23:38:10 +0000 |
| commit | aa57db3d2b66e74f2d6bf753daef87b44530c22a (patch) | |
| tree | 1ab02567542b9ef4054f4f4896c7dd05b4116980 | |
| parent | 96e3df01beeca96ec2cddfed968f7d05e3b3134e (diff) | |
fix comint warning
| -rw-r--r-- | emacs/init.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/init.el b/emacs/init.el index c7fa7af..79f2b83 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -439,7 +439,7 @@ given keymap or in the global keymap." (require 'comint) (setq-default comint-scroll-to-bottom-on-input t) (setq-default comint-scroll-to-bottom-on-output t) - (add-to-list comint-output-filter-functions #'comint-truncate-buffer) + (add-to-list 'comint-output-filter-functions #'comint-truncate-buffer) (add-to-list 'comint-output-filter-functions #'ansi-color-process-output)) (use-package bash-completion |
