diff options
Diffstat (limited to 'lisp/+emacs.el')
-rw-r--r-- | lisp/+emacs.el | 4 |
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 |