summaryrefslogtreecommitdiff
path: root/test/lisp/emacs-lisp/cl-seq-tests.el
diff options
context:
space:
mode:
authorTino Calancha <tino.calancha@gmail.com>2016-10-20 19:51:55 +0900
committerTino Calancha <tino.calancha@gmail.com>2016-10-20 19:51:55 +0900
commitf63a4b82f0e8634a76e4e7794bb7c7c4e734c4ba (patch)
tree33fde3abfa871ba42ca1c252836fba89078132aa /test/lisp/emacs-lisp/cl-seq-tests.el
parent10a2239627bd5369bf46d013eb7cfbe27553c8d9 (diff)
downloademacs-f63a4b82f0e8634a76e4e7794bb7c7c4e734c4ba.tar.gz
cl-seq: Remove max limit on input sequence length
* lisp/emacs-lisp/cl-seq.el (cl-fill, cl-replace, cl-delete) (cl--position, cl-nsubstitute, cl-substitute, cl-remove): Remove limit on maximum length for the input sequence (#Bug24264). * test/lisp/emacs-lisp/cl-seq-tests.el: Update test expected result as passed.
Diffstat (limited to 'test/lisp/emacs-lisp/cl-seq-tests.el')
-rw-r--r--test/lisp/emacs-lisp/cl-seq-tests.el1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/lisp/emacs-lisp/cl-seq-tests.el b/test/lisp/emacs-lisp/cl-seq-tests.el
index cc393f40583..02d9246db21 100644
--- a/test/lisp/emacs-lisp/cl-seq-tests.el
+++ b/test/lisp/emacs-lisp/cl-seq-tests.el
@@ -294,7 +294,6 @@ Body are forms defining the test."
(ert-deftest cl-seq-test-bug24264 ()
"Test for http://debbugs.gnu.org/24264 ."
- :expected-result :failed
(let ((list (append (make-list 8000005 1) '(8)))
(list2 (make-list 8000005 2)))
(should (cl-position 8 list))