summary refs log tree commit diff stats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/acdw.el4
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