Skip to content

Commit db05702

Browse files
committed
Return OutputToStr old formatting.
1 parent b5e30ac commit db05702

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

MDX2JSON/AbstractREST.cls.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -486,22 +486,22 @@ pArgs - additional arguments]]></Description>
486486
487487
//Labels that allow for IO redirection
488488
//Read Character - we don't care about reading
489-
rchr(c) quit
489+
rchr(c) quit
490490
//Read a string - we don't care about reading
491491
rstr(sz,to) quit
492492
//Write a character - call the output label
493-
wchr(s) do output($char(s)) quit
493+
wchr(s) do output($char(s)) quit
494494
//Write a form feed - call the output label
495-
wff() do output($char(12)) quit
495+
wff() do output($char(12)) quit
496496
//Write a newline - call the output label
497-
wnl() do output($char(13,10)) quit
497+
wnl() do output($char(13,10)) quit
498498
//Write a string - call the output label
499-
wstr(s) do output(s) quit
499+
wstr(s) do output(s) quit
500500
//Write a tab - call the output label
501-
wtab(s) do output($char(9)) quit
501+
wtab(s) do output($char(9)) quit
502502
//Output label - this is where you would handle what you actually want to do.
503503
// in our case, we want to write to str
504-
output(s) set str=str_s quit
504+
output(s) set str=str_s quit
505505
]]></Implementation>
506506
</Method>
507507
</Class>

0 commit comments

Comments
 (0)