[Bug-apl] Announce: APL function editor written in APL

2014-05-30 Thread Blake McBride
An APL Editor for GNU APL This package is located at: https://github.com/blakemcbride This package provides an editor, written in APL, for editing APL functions. It provides facilities that make the creation and editing of APL functions easier and less clunky than the standard APL function edit

[Bug-apl] Messed up indentation with )DUMP

2014-05-30 Thread Daniel H. Leidisch
Hello! Workspaces saved with )DUMP mess with my identation. Looking at the .apl files, some kind of automatic indentation seems to take place, and when I edit functions, there is no indentation at all. This does not happen with workspaces saved via )SAVE, or with functions saved via )OUT. Since s

Re: [Bug-apl] Loading a dumped file doesn't execute the Latent Expression

2014-05-30 Thread Blake McBride
Looks good. Thanks. On Fri, May 30, 2014 at 11:27 AM, Juergen Sauermann < juergen.sauerm...@t-online.de> wrote: > Hi Blake, > > thanks, I had overseen a small detail. When you )LOAD an .xml file then the > file *has been* parsed and ⎕LX is from the new file. When you )LOAD > an .apl file then

Re: [Bug-apl] quad-EC fails with function that doesn't return a value

2014-05-30 Thread Juergen Sauermann
Hi David, thanks, fixed in SVN 303. /// Jürgen On 05/29/2014 05:06 AM, David B. Lamkins wrote: ⎕fx 'bar' '1' bar ⎕ec 'bar' 1 unexpected result tag 0x56020011 in eoc == Assertion failed: 0 in Function:

Re: [Bug-apl] Loading a dumped file doesn't execute the Latent Expression

2014-05-30 Thread Juergen Sauermann
Hi Blake, thanks, I had overseen a small detail. When you )LOAD an .xml file then the file *has been* parsed and ⎕LX is from the new file. When you )LOAD an .apl file then the file *will be* executed and ⎕LX is from the old workspace. Should be fixed in SVN 302. /// Jürgen On 05/28/2014 06

Re: [Bug-apl] Can't )LOAD a dumped file anymore

2014-05-30 Thread Elias Mårtenson
Would it make sense to add a keyboard shortcut to load the entire file being edited into the interpreter? This would be a compliment to the existing C-c C-c feature that loads a single function. Regards, Elias On 31 May 2014 00:01, "Blake McBride" wrote: > Dear Juergen, > > Thanks. I will test

Re: [Bug-apl] Can't )LOAD a dumped file anymore

2014-05-30 Thread Blake McBride
Dear Juergen, Thanks. I will test and let you know. I was using happily using workspaces until I heard the was movement towards dump files. At the time, dump files came in handy because I could just edit the .apl in a text editor. Emacs mode and my own APL function editor (written in APL that

Re: [Bug-apl] Can't )LOAD a dumped file anymore

2014-05-30 Thread Blake McBride
I can now load .apl files again, and the WS copy is working too. Thanks! Blake On Fri, May 30, 2014 at 9:59 AM, Juergen Sauermann < juergen.sauerm...@t-online.de> wrote: > Hi Blake, > > thanks, fixed it already. But then a svn revert rolled it back. > This issue (and also the #2) should be f

Re: [Bug-apl] Can't )LOAD a dumped file anymore

2014-05-30 Thread Juergen Sauermann
Hi Blake, thanks, fixed it already. But then a svn revert rolled it back. This issue (and also the #2) should be fixed in SVN 301 but tests are ongoing. The only thing left over right now is selective )COPY with .apl files. I wonder if this is needed or not? I could (1) add a warning that this i

[Bug-apl] Can't )LOAD a dumped file anymore

2014-05-30 Thread Blake McBride
Greetings, With the ;latest update (300), I can no longer )LOAD a )DUMP'ed file: )LOAD KeyedFiles loading )DUMP file /home/blake/workspaces/KeyedFiles.apl... WAS CLEAR WS == Assertion failed: lines.size() > 0 in Fu

Re: [Bug-apl] )COPY copies extra stuff - sometimes

2014-05-30 Thread Blake McBride
#1 looks good. Thanks! On Fri, May 30, 2014 at 7:34 AM, Juergen Sauermann < juergen.sauerm...@t-online.de> wrote: > Hi Blake, > > this should be fixed in SVN 300. > Work on #2 is ongoing. > > /// Jürgen > > > > On 05/29/2014 07:50 PM, Blake McBride wrote: > >> Dear Juergen, >> >> Thanks for you

Re: [Bug-apl] )COPY copies extra stuff - sometimes

2014-05-30 Thread Juergen Sauermann
Hi Blake, this should be fixed in SVN 300. Work on #2 is ongoing. /// Jürgen On 05/29/2014 07:50 PM, Blake McBride wrote: Dear Juergen, Thanks for your reply. For problem #1 I am only using a .xml (workspace) file. There is no .apl file. I am doing: )CLEAR )COPY Devices ∆SS

[Bug-apl] Limit what )LIB shows

2014-05-30 Thread Blake McBride
Greetings, )LIB should only show .xml and .apl files and not any other files. For example: )LIB Devices.xml KeyedFiles.aplbox.xml boxing.aplEditor.apl~ Editor.xmlgg Editor.apl~ and gg should not be displayed. )LIB displays workspaces and not files. Tha