summary refs log tree commit diff stats
path: root/lisp/+emacs.el
diff options
context:
space:
mode:
authorCase Duckworth2022-01-03 10:36:32 -0600
committerCase Duckworth2022-01-03 10:36:32 -0600
commit679fe570a7527eadc1fcddbff619bfb2763f4d98 (patch)
tree21751d516bdcc50f851ad5913495bee1bbc54126 /lisp/+emacs.el
parentAdd function: +ensure-after-init (diff)
downloademacs-679fe570a7527eadc1fcddbff619bfb2763f4d98.tar.gz
emacs-679fe570a7527eadc1fcddbff619bfb2763f4d98.zip
Fix things for Windows Emacs
Diffstat (limited to 'lisp/+emacs.el')
-rw-r--r--lisp/+emacs.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/+emacs.el b/lisp/+emacs.el index d76eee8..2e3d257 100644 --- a/lisp/+emacs.el +++ b/lisp/+emacs.el
@@ -273,7 +273,9 @@ kill without asking."
273(when (require 'repeat nil :noerror) 273(when (require 'repeat nil :noerror)
274 (setq-default repeat-exit-key "g" 274 (setq-default repeat-exit-key "g"
275 repeat-exit-timeout 5) 275 repeat-exit-timeout 5)
276 (repeat-mode +1)) 276 (when (fboundp 'repeat-mode)
277 ;; `repeat-mode' is defined in repeat.el, which is an older library.
278 (repeat-mode +1)))
277 279
278(when (require 'savehist nil :noerror) 280(when (require 'savehist nil :noerror)
279 (setq-default history-length t 281 (setq-default history-length t