diff options
author | Case Duckworth | 2021-09-02 17:31:19 -0500 |
---|---|---|
committer | Case Duckworth | 2021-09-02 17:31:19 -0500 |
commit | a23910572a8871973a1c95746b4676f196897460 (patch) | |
tree | d89b6b813c36d1c6330de6aeaaa69b8e868e66a3 /lisp | |
parent | Change avy/link-hint keys (diff) | |
download | emacs-a23910572a8871973a1c95746b4676f196897460.tar.gz emacs-a23910572a8871973a1c95746b4676f196897460.zip |
Enable iscroll-mode always
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/acdw.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/acdw.el b/lisp/acdw.el index b7cf4f0..2acef4f 100644 --- a/lisp/acdw.el +++ b/lisp/acdw.el | |||
@@ -531,7 +531,7 @@ It's called 'require-private' for historical reasons." | |||
531 | (when (fboundp mode) | 531 | (when (fboundp mode) |
532 | (funcall mode -1))) | 532 | (funcall mode -1))) |
533 | ;; enable modes | 533 | ;; enable modes |
534 | (dolist (mode '(iscroll-mode olivetti-mode)) | 534 | (dolist (mode '(olivetti-mode)) |
535 | (when (fboundp mode) | 535 | (when (fboundp mode) |
536 | (funcall mode +1)))) | 536 | (funcall mode +1)))) |
537 | ;; turn off | 537 | ;; turn off |
@@ -543,7 +543,7 @@ It's called 'require-private' for historical reasons." | |||
543 | (when (fboundp mode) | 543 | (when (fboundp mode) |
544 | (funcall mode +1))) | 544 | (funcall mode +1))) |
545 | ;; disable modes | 545 | ;; disable modes |
546 | (dolist (mode '(olivetti-mode iscroll-mode)) | 546 | (dolist (mode '(olivetti-mode)) |
547 | (when (fboundp mode) | 547 | (when (fboundp mode) |
548 | (funcall mode -1))))) | 548 | (funcall mode -1))))) |
549 | 549 | ||