forked from rebol/rebol
-
Notifications
You must be signed in to change notification settings - Fork 2
New line
angerangel edited this page Mar 19, 2013
·
1 revision
NEW-LINE position value /all /skip size
Sets or clears the new-line marker within a block or paren.
NEW-LINE is a native value.
- position -- Position to change marker (modified) (block! paren!)
- value -- Set TRUE for newline
- /all -- Set/clear marker to end of series
-
/skip -- Set/clear marker periodically to the end of the series
- size (integer!)
#SOURCE
new-line: make native! [ [
{Sets or clears the new-line marker within a block or paren.}
position [block! paren!] "Position to change marker (modified)"
value "Set TRUE for newline"
/all "Set/clear marker to end of series"
/skip {Set/clear marker periodically to the end of the series}
size [integer!]
] ]