emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

scratch/shortdoc 89adc91: Add some cross-cutting functions


From: Lars Ingebrigtsen
Subject: scratch/shortdoc 89adc91: Add some cross-cutting functions
Date: Mon, 28 Sep 2020 08:42:52 -0400 (EDT)

branch: scratch/shortdoc
commit 89adc9113c3a149bc09dea14981555ef662e7377
Author: Lars Ingebrigtsen <larsi@gnus.org>
Commit: Lars Ingebrigtsen <larsi@gnus.org>

    Add some cross-cutting functions
---
 lisp/emacs-lisp/shortdoc.el | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/lisp/emacs-lisp/shortdoc.el b/lisp/emacs-lisp/shortdoc.el
index 7783428..65aa8b5 100644
--- a/lisp/emacs-lisp/shortdoc.el
+++ b/lisp/emacs-lisp/shortdoc.el
@@ -94,6 +94,8 @@ There can be any number of :example/:result elements."
   (mapconcat
    :eval (mapconcat (lambda (a) (concat "[" a "]"))
                     '("foo" "bar" "zot") " "))
+  (mapcar
+   :eval (mapcar #'identity "123"))
   (format
    :eval (format "This number is %d" 4))
   "Manipulating Strings"
@@ -174,6 +176,8 @@ There can be any number of :example/:result elements."
    :eval (length "foo"))
   (string-search
    :eval (string-search "bar" "foobarzot"))
+  (assoc-string
+   :eval (assoc-string "foo" '(("a" 1) (foo 2))))
   (seq-position
    :eval "(seq-position \"foobarzot\" ?z)"
    :result 6))
@@ -524,6 +528,10 @@ There can be any number of :example/:result elements."
    :eval (vectorp "1"))
   (length
    :eval (length [1 2 3]))
+  (mapcar
+   :eval (mapcar #'identity [1 2 3]))
+  (reduce
+   :eval (reduce #'+ [1 2 3]))
   (seq-subseq
    :eval (seq-subseq [1 2 3 4 5] 1 3)
    :eval (seq-subseq [1 2 3 4 5] 1)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]