From: Lars Ingebrigtsen Date: Sat, 17 Sep 2022 10:31:24 +0000 (+0200) Subject: Autoload string-join X-Git-Tag: emacs-29.0.90~1856^2~424 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=84801d468ae1e9fed271151a9c7e259cf05488e8;p=emacs.git Autoload string-join * lisp/emacs-lisp/subr-x.el (string-join): Autoload since it's being used more now. --- diff --git a/lisp/emacs-lisp/subr-x.el b/lisp/emacs-lisp/subr-x.el index bd7c3c82f97..6e4d88b4df3 100644 --- a/lisp/emacs-lisp/subr-x.el +++ b/lisp/emacs-lisp/subr-x.el @@ -97,6 +97,7 @@ threading." (maphash (lambda (_ v) (push v values)) hash-table) values)) +;;;###autoload (defsubst string-join (strings &optional separator) "Join all STRINGS using SEPARATOR. Optional argument SEPARATOR must be a string, a vector, or a list of