Posted by: ronw
« on: February 04, 2014, 05:49:51 PM »I made an enhanced, second macro:
Which gave the following result:
There is a ")" where I expected the line break.
Looking through box.e, the only possible thing I found to explain this is:
Have I found a bug?
Code: [Select]
_command conde()
{
parse arg(1) with symbol;
box("#ifdef " :+ symbol, "", "#else\n#endif // " :+ symbol, "", "", "", "");
}
Which gave the following result:
Code: [Select]
#ifdef FEATURE
And a paragraph of text for
testing purposes.
#else)#endif // FEATURE
There is a ")" where I expected the line break.
Looking through box.e, the only possible thing I found to explain this is:
Code: [Select]
s.blc=_UTF8ToMultiByte(s.blc);Have I found a bug?