forked from rebol/rebol
-
Notifications
You must be signed in to change notification settings - Fork 2
Detab
angerangel edited this page Mar 15, 2013
·
1 revision
DETAB string /size number
Converts tabs to spaces (default tab size is 4).
DETAB is a native value.
- string -- (modified) (any-string!)
-
/size -- Specifies the number of spaces per tab
- number (integer!)
#SOURCE
detab: make native! [ [
"Converts tabs to spaces (default tab size is 4)."
string [any-string!] "(modified)"
/size "Specifies the number of spaces per tab"
number [integer!]
] ]