diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-04-13 06:40:49 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-04-13 06:40:49 -0700 |
commit | d5087a29d231b4e51306ef3f3317f11cb99ba99a (patch) | |
tree | 7f429902e276ed84e4e514732e982944d8dcc46c | |
parent | c75ca9d95e8ff7883bd1f193f3723e2a9f76271a (diff) | |
download | txr-d5087a29d231b4e51306ef3f3317f11cb99ba99a.tar.gz txr-d5087a29d231b4e51306ef3f3317f11cb99ba99a.tar.bz2 txr-d5087a29d231b4e51306ef3f3317f11cb99ba99a.zip |
Fix wrong documentation for window-map.
* txr.1: window-map doesn't require the function to return
sequences, and doesn't append.
-rw-r--r-- | txr.1 | 12 |
1 files changed, 5 insertions, 7 deletions
@@ -22788,18 +22788,16 @@ otherwise a list. Under .codn window-map , +values returned by .meta function -is expected to return a sequence. The sequences returned -by the calls to -.meta function -are appended together to form the sequence that, possibly after a conversion to -the same type as +are accumulated into a sequence of the same type as .meta sequence -becomes the output sequence. Under +and that sequence is returned. Under .codn window-mappend , the values returned by the calls to .meta function -are appended together. +are expected to be sequence which are appended together to +form the output sequence. These functions respectively resemble .code mapcar |