[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))
- [elpa] externals/stream updated (5c0ffd088f -> 1e3c1436cc), Stefan Monnier, 2024/11/17
- [elpa] externals/stream b2f650a8a6 4/7: Add an implementation of `seq-concatenate` for streams., Stefan Monnier, 2024/11/17
- [elpa] externals/stream 0ad03f585b 5/7: Add test for delayed evaluation for seq-drop-while for streams., Stefan Monnier, 2024/11/17
- [elpa] externals/stream daa19594e7 3/7: Add generalized variables for streams that error when used., Stefan Monnier, 2024/11/17
- [elpa] externals/stream 1e3c1436cc 7/7: Shorten the documentation strings of seq-take-while and seq-drop-while., Stefan Monnier, 2024/11/17
- [elpa] externals/stream bd614d022b 2/7: Add more efficient method for making streams from arrays., Stefan Monnier, 2024/11/17
- [elpa] externals/stream f48552c066 1/7: Change 'stream.el' to use structures instead of cons cells., Stefan Monnier, 2024/11/17
- [elpa] externals/stream 202db1e4b5 6/7: Fix the quoting in the documentation of `seq-mapn` for streams.,
Stefan Monnier <=