Re: [Bug-apl] )host to take string

2014-04-26 Thread enztec
thanks for replying - boy what a busy apl day On Sat, 26 Apr 2014 16:45:09 +0200 Juergen Sauermann wrote: > Hi, > > actually it should not. )HOST is a command so its arguments > are not computed (in GNU APL, but probably also others). > > Thus 'workspaces/',a is passed verbatim to popen(). >

Re: [Bug-apl] )host to take string

2014-04-26 Thread Juergen Sauermann
Hi, actually it should not. )HOST is a command so its arguments are not computed (in GNU APL, but probably also others). Thus 'workspaces/',a is passed verbatim to popen(). /// Jürgen On 04/25/2014 11:10 PM, enz...@gmx.com wrote: presently )host takes direct code )host vi workspaces/

[Bug-apl] )host to take string

2014-04-25 Thread enztec
presently )host takes direct code )host vi workspaces/a1works (disregard Vim: Warning: Output is not to a terminalusing )host vi workspaces < `tty` > `tty` is the real command) putting it in quotes )host vi 'workspaces/a1'works a←'a1' 'workspaces/', a workspa