newLISP Fan Club

Forum => newLISP and the O.S. => Topic started by: HPW on December 05, 2003, 11:47:17 PM

Title: newLisp DLL with silent Bug?
Post by: HPW on December 05, 2003, 11:47:17 PM
When I use a call with (silent ...) one time with the DLL, I get no more any return.

Is it a bug?

It should only works for the one call!





In TK it works like this:

> (print "Test")
Test"Test"
> (silent(print "Test"))
Test

>(print "Test")
Test"Test"
>
Title:
Post by: HPW on December 06, 2003, 12:45:25 AM
I tired this function to do what I want.



;function for print strings without return-value
(define (nb-print nb_str)
(silent(print nb_str))
)


But works also only on the first call.
Title:
Post by: Lutz on December 06, 2003, 03:09:41 PM
when using 'silent' in DLL mode it never gets reset, this will be fixed in the next development version.



Lutz
Title:
Post by: HPW on December 06, 2003, 10:59:59 PM
Lutz,



Thanks for the quick info.

This will allow another cool feature for the interface.