Skip to content
angerangel edited this page Mar 19, 2013 · 1 revision

USAGE

   NEW-LINE position value /all /skip size

DESCRIPTION

Sets or clears the new-line marker within a block or paren.

NEW-LINE is a native value.

ARGUMENTS

  • position -- Position to change marker (modified) (block! paren!)
  • value -- Set TRUE for newline

REFINEMENTS

  • /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!]
] ]
Clone this wiki locally