diff options
author | Tino Calancha <tino.calancha@gmail.com> | 2016-10-20 19:51:55 +0900 |
---|---|---|
committer | Tino Calancha <tino.calancha@gmail.com> | 2016-10-20 19:51:55 +0900 |
commit | f63a4b82f0e8634a76e4e7794bb7c7c4e734c4ba (patch) | |
tree | 33fde3abfa871ba42ca1c252836fba89078132aa /test/lisp/emacs-lisp/cl-seq-tests.el | |
parent | 10a2239627bd5369bf46d013eb7cfbe27553c8d9 (diff) | |
download | emacs-f63a4b82f0e8634a76e4e7794bb7c7c4e734c4ba.tar.gz emacs-f63a4b82f0e8634a76e4e7794bb7c7c4e734c4ba.tar.bz2 emacs-f63a4b82f0e8634a76e4e7794bb7c7c4e734c4ba.zip |
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.el | 1 |
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)) |