Skip to content

Commit fc51038

Browse files
committed
Merge pull request #70 from hostilefork/paren-new-line
Allow NEW-LINE and NEW-LINE? to accept PAREN! series
2 parents 6a79a7b + 631e698 commit fc51038

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

‎src/boot/natives.r‎

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -622,17 +622,17 @@ form: native [
622622
]
623623

624624
new-line: native [
625-
{Sets or clears the new-line marker within a block.}
626-
block [block!] {Position in block to change marker (modified)}
625+
{Sets or clears the new-line marker within a block or paren.}
626+
position [block! paren!] {Position to change marker (modified)}
627627
value {Set TRUE for newline}
628-
/all {Set/clear marker to end of block}
629-
/skip {Set/clear marker periodically to the end of the block}
628+
/all {Set/clear marker to end of series}
629+
/skip {Set/clear marker periodically to the end of the series}
630630
size [integer!]
631631
]
632632

633633
new-line?: native [
634-
{Returns the state of the new-line marker within a block.}
635-
block [block!] {Position in block to check marker}
634+
{Returns the state of the new-line marker within a block or paren.}
635+
position [block! paren!] {Position to check marker}
636636
]
637637

638638
to-local-file: native [

0 commit comments

Comments
 (0)