]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/subr.el (string-split): New alias for split-string.
authorStefan Kangas <stefankangas@gmail.com>
Fri, 9 Sep 2022 21:51:05 +0000 (23:51 +0200)
committerStefan Kangas <stefankangas@gmail.com>
Fri, 9 Sep 2022 23:12:29 +0000 (01:12 +0200)
etc/NEWS
lisp/subr.el

index 97a476ae08e14981ef56edcdbcf45c071202189b..35b74aa7de6ddbe56af04402dcf6d12bc05d99f3 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -3679,6 +3679,8 @@ to preserve the old behavior, apply
 '(take N LIST)' returns the first N elements of LIST; 'ntake' does
 the same but works by modifying LIST destructively.
 
+---
+** 'string-split' is now an alias for 'split-string'.
 
 \f
 * Changes in Emacs 29.1 on Non-Free Operating Systems
index f4b457556d6f73dcd2d3b400da5028e752f38dc0..686189e69b8c739d93f3aa901ec073226a240bb7 100644 (file)
@@ -5204,6 +5204,8 @@ Modifies the match data; use `save-match-data' if necessary."
 
     (nreverse list)))
 
+(defalias 'string-split #'split-string)
+
 (defun combine-and-quote-strings (strings &optional separator)
   "Concatenate the STRINGS, adding the SEPARATOR (default \" \").
 This tries to quote the strings to avoid ambiguity such that