emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[nongnu] elpa/helm 244734bab3 1/2: Docstring only


From: ELPA Syncer
Subject: [nongnu] elpa/helm 244734bab3 1/2: Docstring only
Date: Wed, 17 Aug 2022 06:58:56 -0400 (EDT)

branch: elpa/helm
commit 244734bab345c4a8bc3925dc0b067ddaef8c0cb9
Author: Thierry Volpiatto <thievol@posteo.net>
Commit: Thierry Volpiatto <thievol@posteo.net>

    Docstring only
---
 helm-lib.el | 15 +++++++--------
 1 file changed, 7 insertions(+), 8 deletions(-)

diff --git a/helm-lib.el b/helm-lib.el
index d8c56ac836..f08f34004b 100644
--- a/helm-lib.el
+++ b/helm-lib.el
@@ -1185,14 +1185,13 @@ accepted.
 
 Example:
 
-    (let ((answer (helm-read-answer
-                    \"answer [y,n,!,q]: \"
-                    \\='(\"y\" \"n\" \"!\" \"q\"))))
-      (pcase answer
-          (\"y\" \"yes\")
-          (\"n\" \"no\")
-          (\"!\" \"all\")
-          (\"q\" \"quit\")))
+    (pcase (helm-read-answer
+             \"answer [y,n,!,q]: \"
+             \\='(\"y\" \"n\" \"!\" \"q\"))
+       (\"y\" \"yes\")
+       (\"n\" \"no\")
+       (\"!\" \"all\")
+       (\"q\" \"quit\"))
 
 "
   (helm-awhile (read-key (propertize prompt 'face 'minibuffer-prompt))



reply via email to

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