Hi Elias,
as far as I can see you use a nested vector of strings as right argument
of ⎕FX.
In that case Str0() is the best way to represent an empty line.
Another thing I saw is that you instantiate a Quad_FX object. That is
unnecessary
because there is an instance called fun for every system function already.
You should use Quad_FX::fun instead.
/// Jürgen
On 08/01/2014 12:37 PM, Elias Mårtenson wrote:
I just checked my code, and it actually passes empty strings as a
one-character string containing a single space instead. I think I did
that in order to avoid some problems I had earlier with empty lines.
Here's the code that does it:
https://github.com/lokedhs/gnu-apl-mode/blob/master/native/DefCommand.cc#L49
With this code, blank lines gets eliminated. Are you suggesting I
change this to use Str0(LOC) instead?
Regards,
Elias