diff --git a/basis/lists/lazy/lazy-docs.factor b/basis/lists/lazy/lazy-docs.factor index 0b1bfe2d02..e7401d6af1 100644 --- a/basis/lists/lazy/lazy-docs.factor +++ b/basis/lists/lazy/lazy-docs.factor @@ -33,7 +33,7 @@ ARTICLE: { "lists.lazy" "construction" } "Constructing lazy lists" { $subsection 1lazy-list } { $subsection 2lazy-list } { $subsection 3lazy-list } -{ $subsection seq>list } +{ $subsection sequence-tail>list } { $subsection >list } { $subsection lfrom } ; @@ -105,15 +105,15 @@ HELP: lfrom { $values { "n" "an integer" } { "list" "a lazy list of integers" } } { $description "Return an infinite lazy list of incrementing integers starting from n." } ; -HELP: seq>list +HELP: sequence-tail>list { $values { "index" "an integer 0 or greater" } { "seq" "a sequence" } { "list" "a list" } } { $description "Convert the sequence into a list, starting from " { $snippet "index" } "." } { $see-also >list } ; HELP: >list { $values { "object" "an object" } { "list" "a list" } } -{ $description "Convert the object into a list. Existing lists are passed through intact, sequences are converted using " { $link seq>list } " and other objects cause an error to be thrown." } -{ $see-also seq>list } ; +{ $description "Convert the object into a list. Existing lists are passed through intact, sequences are converted using " { $link sequence-tail>list } " and other objects cause an error to be thrown." } +{ $see-also sequence-tail>list } ; { leach foldl lazy-map ltake lfilter lappend lfrom lfrom-by lconcat lcartesian-product lcartesian-product* lcomp lcomp* lmerge lwhile luntil } related-words diff --git a/extra/mason/report/report.factor b/extra/mason/report/report.factor index 1b5aaf39ec..e74db9a1ae 100644 --- a/extra/mason/report/report.factor +++ b/extra/mason/report/report.factor @@ -31,10 +31,13 @@ IN: mason.report write-xml ] with-file-writer ; inline +: file-tail ( file encoding lines -- seq ) + [ file-lines ] dip short tail* "\n" join ; + :: failed-report ( error file what -- status ) [ error [ error. ] with-string-writer :> error - file utf8 file-lines 400 short tail* :> output + file utf8 400 file-tail :> output [XML

<-what->

diff --git a/extra/parser-combinators/parser-combinators.factor b/extra/parser-combinators/parser-combinators.factor index 030d0a2a73..814821fba9 100755 --- a/extra/parser-combinators/parser-combinators.factor +++ b/extra/parser-combinators/parser-combinators.factor @@ -172,7 +172,7 @@ M: or-parser parse ( input parser1 -- list ) #! Return the combined list resulting from the parses #! of parser1 and parser2 being applied to the same #! input. This implements the choice parsing operator. - parsers>> 0 swap seq>list + parsers>> sequence>list [ parse ] with lazy-map lconcat ; : trim-head-slice ( string -- string )