neutrox wrote:Help file says:
br;
Prevent any line breaking in commands copytext, msg, and text.
That should be read:
br;
Stop of using the special line breaker symbol. Set back to original CRLF as line separator.
See this for example:
Code: Select all
$test = "well#<crlf>done";
// Set new line breaker "#":
br "#";
msg $test;
//Set back to original CRLF as line separator.
br;
msg $test;
First i have two line breakers # AND <crlf>
(why two? That's unexpected for me. Bug? Because it says "Redefine the default line breaker" and not "Additional ...")
---------------------------
XYplorer
---------------------------
well
done
---------------------------
OK
---------------------------
Second i have the old behaviour back:
---------------------------
XYplorer
---------------------------
well#
done
---------------------------
OK
---------------------------