newLISP Fan Club

Forum => newLISP newS => Topic started by: Lutz on September 12, 2007, 06:56:53 PM

Title: development release newLISP v.9.2.1
Post by: Lutz on September 12, 2007, 06:56:53 PM
* the monitor area in newLISP-GS now doubles as a shell, where expressions can be entered directly. See CHANGES-GS-103.txt notes for details. Alt-R/Meta-R still works for running editor contents.



* speed-up for 'count' (on UNIX) new 'dostring' iterator, new 'bind' for use in conjunction with 'unify', and 'pack' can take lists.



All files: http://newlisp.org/downloads/development/



Lutz
Title:
Post by: Jeff on September 12, 2007, 07:03:22 PM
Thanks Lutz!  It's great to know our needs get addressed directly.
Title:
Post by: newdep on September 13, 2007, 12:16:55 AM
There is no tgz package in /development... :-)
Title:
Post by: Lutz on September 13, 2007, 06:03:51 AM
The v.9.2.1 .tgz package is there now:



http://newlisp.org/downloads/development/



Lutz
Title: Re: development release newLISP v.9.2.1
Post by: newBert on September 13, 2007, 09:29:13 AM
Quote from: "Lutz"* the monitor area in newLISP-GS now doubles as a shell, where expressions can be entered directly. See CHANGES-GS-103.txt notes for details. Alt-R/Meta-R still works for running editor contents.



Lutz


Quite simply fantastic !

I can now abandon my favorite editor.

Thanks Lutz
Title:
Post by: newdep on September 13, 2007, 09:33:24 AM
very tiny  warning I got...



make -f makefile_linux_readline

make[1]: Entering directory `/home/nodep/prog/nl/newlisp-9.2.1'

gcc -Wall -pedantic -Wno-uninitialized -Wno-strict-aliasing -Wno-long-long -c -O2 -g -DREADLINE -DLINUX newlisp.c

gcc -Wall -pedantic -Wno-uninitialized -Wno-strict-aliasing -Wno-long-long -c -O2 -g -DREADLINE -DLINUX nl-symbol.c

gcc -Wall -pedantic -Wno-uninitialized -Wno-strict-aliasing -Wno-long-long -c -O2 -g -DREADLINE -DLINUX nl-math.c

gcc -Wall -pedantic -Wno-uninitialized -Wno-strict-aliasing -Wno-long-long -c -O2 -g -DREADLINE -DLINUX nl-list.c

nl-list.c: In function `p_count':

nl-list.c:682: warning: pointer of type `void *' used in arithmetic







In the new newlisp-edit ->

The monitor area prompt gives me an extra LF after any command.







(btw: still need to check for OS2)
Title:
Post by: newdep on September 13, 2007, 01:10:05 PM
Nice nice lutz, thanks for the gs:shell option!! like it..



Also the reorder-tags is very welcome ;-)





Im starting to like the newlisp-edit more and more...

(But the Icons are under Linux are not very nice, not transparent! )



PS: Here an Addon for the FIREFOX users under linux,

would be nice to have it default.or as a configuration option? -->

(inside newlisp-edit add "/usr/bin/firefox")





       ; all other UNIX

        (true

            (set 'files '(

                    "/usr/bin/sensible-browser"

                    "/usr/bin/x-www-browser"

                    "/usr/bin/firefox"

                    "/usr/bin/mozilla"

                    "/usr/bin/konqueror"))

            (set 'prog (find true (map file? files)))







Another request, (I already did it manualy)...

Can the  'currentmonitor foreground and background be as 'currentBackground, or perhpas configurable too...)





Bug? in 9.2.1 the GS manual is empty?

(file:///usr/share/doc/newlisp/guiserver/index.html)
Title:
Post by: Lutz on September 13, 2007, 01:46:10 PM
QuoteBug? in 9.2.1 the GS manual is empty?


oops, use this meanwhile: http://newlisp.org/guiserver/



Lutz
Title:
Post by: newdep on September 13, 2007, 01:55:59 PM
aaa now im in a mood for requests ;-)



Line numbers would be a nice to have in newlisp-edit..



as a counter row,column or on the left as a static counter in front of every line..



;-)



(i think the frst it the easier way..)





PS: Have you ever noticed that there is a 100% OS/2 ANSI editor?

fully written in newlisp!! ;-)

Its hidden in one of the screenshots on my OS2 page ;-)
Title:
Post by: kinghajj on September 15, 2007, 11:53:54 PM
I got a segmentation dump when trying dostring.



> (dostring (c "hello") c)
Segmentation fault (core dumped)
Title:
Post by: newBert on September 16, 2007, 12:45:05 AM
Quote from: "kinghajj"I got a segmentation dump when trying dostring.



> (dostring (c "hello") c)
Segmentation fault (core dumped)

Maybe :
> (dostring (c "hello") (println c))
works better !

;)
Title:
Post by: cormullion on September 16, 2007, 01:01:28 AM
Same here:


newLISP v.9.2.1 on OSX UTF-8, execute 'newlisp -h' for more info.

> (dostring (c "hello")
 c)
Bus error


And also:


(dolist (c (explode "hello"))
 c)
Bus error


And finally:


(dotree (s MAIN) s)
Segmentation fault
Title:
Post by: kinghajj on September 16, 2007, 01:01:35 AM
Quote from: "newBert"
Quote from: "kinghajj"I got a segmentation dump when trying dostring.



> (dostring (c "hello") c)
Segmentation fault (core dumped)

Maybe :
> (dostring (c "hello") (println c))
works better !

;)


But the point is that the code I wrote, while useless, should not crash the program.
Title:
Post by: Lutz on September 16, 2007, 06:24:29 AM
thanks to all for catching this



Lutz