diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2021-01-01 05:48:02 +0100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-01-01 05:48:02 +0100 |
commit | d22e74795d8c6aeb3af64e2af8a8f3d96924f6f1 (patch) | |
tree | c416dce7a42730d0c494a5db5316020b28b8b9a8 /test/lisp/subr-tests.el | |
parent | 58bdfd7c540c49f3727c517c3599c9d601696caf (diff) | |
download | emacs-d22e74795d8c6aeb3af64e2af8a8f3d96924f6f1.tar.gz emacs-d22e74795d8c6aeb3af64e2af8a8f3d96924f6f1.tar.bz2 emacs-d22e74795d8c6aeb3af64e2af8a8f3d96924f6f1.zip |
Revert recent add-to-ordered-list changes
* doc/lispref/lists.texi (List Variables): Revert.
* lisp/subr.el (add-to-ordered-list): Revert recent changes
because the semantics are too muddled.
Diffstat (limited to 'test/lisp/subr-tests.el')
-rw-r--r-- | test/lisp/subr-tests.el | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/test/lisp/subr-tests.el b/test/lisp/subr-tests.el index 5be3b8915a2..6677630b2f6 100644 --- a/test/lisp/subr-tests.el +++ b/test/lisp/subr-tests.el @@ -617,26 +617,6 @@ See https://debbugs.gnu.org/cgi/bugreport.cgi?bug=19350." (add-to-ordered-list 'subr--ordered 'b 5) (should (equal subr--ordered '(a c d b e)))) -(defvar subr--ordered-s nil) - -(ert-deftest subr--add-to-ordered-list-equal () - (setq subr--ordered-s nil) - (add-to-ordered-list 'subr--ordered-s "b" 2 #'equal) - (should (equal subr--ordered-s '("b"))) - (add-to-ordered-list 'subr--ordered-s "c" 3) - (should (equal subr--ordered-s '("b" "c"))) - (add-to-ordered-list 'subr--ordered-s "a" 1) - (should (equal subr--ordered-s '("a" "b" "c"))) - (add-to-ordered-list 'subr--ordered-s "e") - (should (equal subr--ordered-s '("a" "b" "c" "e"))) - (add-to-ordered-list 'subr--ordered-s "d" 4) - (should (equal subr--ordered-s '("a" "b" "c" "d" "e"))) - (add-to-ordered-list 'subr--ordered-s "e") - (should (equal subr--ordered-s '("a" "b" "c" "d" "e"))) - (add-to-ordered-list 'subr--ordered-s "b" 5) - (should (equal subr--ordered-s '("a" "c" "d" "b" "e"))) - (should-error (add-to-ordered-list 'subr--ordered-s "b" 5 #'eql))) - ;;; Apropos. |