diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2020-12-23 07:45:19 +0100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2020-12-23 07:45:19 +0100 |
commit | 22c1f00d997d38ba0c453da5f5e9c526d0ac05b0 (patch) | |
tree | 9775eaaf9aefe1196cea7abd3aa9f586a5c99f4c /test/lisp/emacs-lisp/subr-x-tests.el | |
parent | 21097cdd32a29a14ba3b1af55cffb1a9180faf26 (diff) | |
download | emacs-22c1f00d997d38ba0c453da5f5e9c526d0ac05b0.tar.gz emacs-22c1f00d997d38ba0c453da5f5e9c526d0ac05b0.tar.bz2 emacs-22c1f00d997d38ba0c453da5f5e9c526d0ac05b0.zip |
Allow string-slice to take zero-length matches
* lisp/emacs-lisp/subr-x.el (string-slice): Allow zero-length
matches. Code adapted from s.el by Magnar Sveen.
Diffstat (limited to 'test/lisp/emacs-lisp/subr-x-tests.el')
-rw-r--r-- | test/lisp/emacs-lisp/subr-x-tests.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/lisp/emacs-lisp/subr-x-tests.el b/test/lisp/emacs-lisp/subr-x-tests.el index 854d61ed28e..3fc5f1d3ed3 100644 --- a/test/lisp/emacs-lisp/subr-x-tests.el +++ b/test/lisp/emacs-lisp/subr-x-tests.el @@ -608,7 +608,9 @@ (should (equal (string-slice "foo-bar" "-") '("foo" "-bar"))) (should (equal (string-slice "foo-bar-" "-") '("foo" "-bar" "-"))) (should (equal (string-slice "-foo-bar-" "-") '("-foo" "-bar" "-"))) - (should (equal (string-slice "ooo" "lala") '("ooo")))) + (should (equal (string-slice "ooo" "lala") '("ooo"))) + (should (equal (string-slice "foo bar" "\\b") '("foo" " " "bar" ""))) + (should (equal (string-slice "foo bar" "\\b\\|a") '("foo" " " "b" "ar" "")))) (ert-deftest subr-string-pad () (should (equal (string-pad "foo" 5) "foo ")) |