From: Lars Ingebrigtsen Date: Thu, 15 Jul 2021 08:37:11 +0000 (+0200) Subject: Mention more split-string-* functions in shortdoc X-Git-Tag: emacs-28.0.90~1861 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4aac8f60e688076980d2103d275a78609c03be16;p=emacs.git Mention more split-string-* functions in shortdoc * lisp/emacs-lisp/shortdoc.el (string): Mention split-string-and-unquote and split-string-shell-command. --- diff --git a/lisp/emacs-lisp/shortdoc.el b/lisp/emacs-lisp/shortdoc.el index 4df404015a0..1d2c52454be 100644 --- a/lisp/emacs-lisp/shortdoc.el +++ b/lisp/emacs-lisp/shortdoc.el @@ -162,6 +162,10 @@ There can be any number of :example/:result elements." :eval (split-string "foo bar") :eval (split-string "|foo|bar|" "|") :eval (split-string "|foo|bar|" "|" t)) + (split-string-and-unquote + :eval (split-string-and-unquote "foo \"bar zot\"")) + (split-string-shell-command + :eval (split-string-shell-command "ls /tmp/'foo bar'")) (string-lines :eval (string-lines "foo\n\nbar") :eval (string-lines "foo\n\nbar" t))