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

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

[elpa] externals/stream 202db1e4b5 6/7: Fix the quoting in the documenta


From: Stefan Monnier
Subject: [elpa] externals/stream 202db1e4b5 6/7: Fix the quoting in the documentation of `seq-mapn` for streams.
Date: Sun, 17 Nov 2024 21:15:43 -0500 (EST)

branch: externals/stream
commit 202db1e4b55e13149cfc116c2dfd330434308a32
Author: Earl Hyatt <okamsn@protonmail.com>
Commit: Stefan Monnier <monnier@iro.umontreal.ca>

    Fix the quoting in the documentation of `seq-mapn` for streams.
    
    * stream.el (seq-mapn): Correctly use "\\=" for escaping the single quote 
in the
    documentation string.
---
 stream.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/stream.el b/stream.el
index f9210ed324..4c1fb4bd7f 100644
--- a/stream.el
+++ b/stream.el
@@ -447,8 +447,8 @@ Example: this prints the first ten Fibonacci numbers:
                   1
                   (stream-cons
                    1
-                   (seq-mapn #'+ fibs (stream-rest fibs))))))
-    (seq-do #'print (seq-take fibs 10)))
+                   (seq-mapn #\\='+ fibs (stream-rest fibs))))))
+    (seq-do #\\='print (seq-take fibs 10)))
 
 \(fn FUNCTION STREAMS...)"
   (if (not (seq-every-p #'streamp streams))



reply via email to

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