diff options
author | Phil Sainty <psainty@orcon.net.nz> | 2021-01-10 15:20:51 +1300 |
---|---|---|
committer | Phil Sainty <psainty@orcon.net.nz> | 2021-08-03 23:20:06 +1200 |
commit | 748df220efdd46439578f252ee18091770c82af6 (patch) | |
tree | b8ec763c94144e87211343fbba347262535920e2 /lisp/so-long.el | |
parent | 7828f69828fa4082771927993542a1f39abb0e61 (diff) | |
download | emacs-748df220efdd46439578f252ee18091770c82af6.tar.gz emacs-748df220efdd46439578f252ee18091770c82af6.tar.bz2 emacs-748df220efdd46439578f252ee18091770c82af6.zip |
; * lisp/so-long.el: Minor bug fixes
(so-long-disable-minor-modes): Don't call the mode function to disable
the mode unless it was actually enabled.
(so-long-restore-minor-modes, so-long-restore-variables): Use the
remembered list values, which might be different to the defaults.
Also comments, and spelling consistency changes for the so-long tests
(a fixup for commit 83bc4ad369 which had only addressed so-long.el,
and not the test files).
Diffstat (limited to 'lisp/so-long.el')
-rw-r--r-- | lisp/so-long.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/so-long.el b/lisp/so-long.el index 8dd2d1a9027..dafcfaa18cb 100644 --- a/lisp/so-long.el +++ b/lisp/so-long.el @@ -1346,14 +1346,15 @@ Calls `so-long-disable-minor-modes' and `so-long-override-variables'." (defun so-long-disable-minor-modes () "Disable any active minor modes listed in `so-long-minor-modes'." (dolist (mode (so-long-original 'so-long-minor-modes)) - (when (and (boundp mode) mode) + (when (and (boundp mode) + (symbol-value mode)) (funcall mode 0)))) (defun so-long-restore-minor-modes () "Restore the minor modes which were disabled. The modes are enabled in accordance with what was remembered in `so-long'." - (dolist (mode so-long-minor-modes) + (dolist (mode (so-long-original 'so-long-minor-modes)) (when (and (so-long-original mode) (boundp mode) (not (symbol-value mode))) @@ -1368,7 +1369,7 @@ The modes are enabled in accordance with what was remembered in `so-long'." "Restore the remembered values for the overridden variables. The variables are set in accordance with what was remembered in `so-long'." - (dolist (ovar so-long-variable-overrides) + (dolist (ovar (so-long-original 'so-long-variable-overrides)) (so-long-restore-variable (car ovar)))) (defun so-long-restore-variable (variable) |