]> git.eshelyaron.com Git - emacs.git/commitdiff
Mention more split-string-* functions in shortdoc
authorLars Ingebrigtsen <larsi@gnus.org>
Thu, 15 Jul 2021 08:37:11 +0000 (10:37 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Thu, 15 Jul 2021 08:37:11 +0000 (10:37 +0200)
* lisp/emacs-lisp/shortdoc.el (string): Mention
split-string-and-unquote and split-string-shell-command.

lisp/emacs-lisp/shortdoc.el

index 4df404015a095a309336d2f704c3b3a6230e0b51..1d2c52454bea6d4473d955e377aee9d597366f69 100644 (file)
@@ -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))