diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2020-11-02 10:17:08 +0100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2020-11-02 10:17:08 +0100 |
commit | 5cea77af41b59ba6f6386264812c36ec31ba2efc (patch) | |
tree | 3288c47d9c7b92bfd203c76c9c76af4bd5419230 /test/lisp/emacs-lisp/easy-mmode-tests.el | |
parent | 5ab5504def63ebdfba08169f24a5829353bff137 (diff) | |
download | emacs-5cea77af41b59ba6f6386264812c36ec31ba2efc.tar.gz emacs-5cea77af41b59ba6f6386264812c36ec31ba2efc.tar.bz2 emacs-5cea77af41b59ba6f6386264812c36ec31ba2efc.zip |
Partially revert previous define-minor-mode change
* lisp/emacs-lisp/easy-mmode.el (easy-mmode--arg-docstring):
Only document the values we want to support, not the ones we
actually support.
(define-minor-mode): Partially revert to previous behaviour.
Diffstat (limited to 'test/lisp/emacs-lisp/easy-mmode-tests.el')
-rw-r--r-- | test/lisp/emacs-lisp/easy-mmode-tests.el | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/test/lisp/emacs-lisp/easy-mmode-tests.el b/test/lisp/emacs-lisp/easy-mmode-tests.el index 4a448200a2b..c05379e4415 100644 --- a/test/lisp/emacs-lisp/easy-mmode-tests.el +++ b/test/lisp/emacs-lisp/easy-mmode-tests.el @@ -48,22 +48,16 @@ (with-temp-buffer (define-minor-mode test-mode "A test.") (should (eq test-mode nil)) - (test-mode t) - (should (eq test-mode nil)) (test-mode nil) (should (eq test-mode t)) (test-mode -33) (should (eq test-mode nil)) (test-mode 33) (should (eq test-mode t)) - (test-mode 0) - (should (eq test-mode nil)) - (test-mode 'toggle) - (should (eq test-mode t)) (test-mode 'toggle) (should (eq test-mode nil)) - (test-mode "what") - (should (eq test-mode nil)))) + (test-mode 'toggle) + (should (eq test-mode t)))) (provide 'easy-mmode-tests) |