*sigh* I hate not being able to figure this out on my own. I followed your directions and received the following error. Any ideas what I did wrong? C:\Program...
739
Fred T. Sanders
sandersfred
Jul 2, 2002 7:15 pm
yep, you didn't delete the image file first. ... From: "greytalyn" <pdlathro@...> To: <cormanlisp@yahoogroups.com> Sent: Tuesday, July 02, 2002 3:11...
740
Joe Marshall
prunesquallor@...
Jul 2, 2002 7:31 pm
You can get away without deleting the image file first by specifying -image "" on the command line. I made a `shortcut' to "D:\Program Files\Corman...
741
Roger Corman
rgcorman
Jul 2, 2002 11:01 pm
Hey Joe, Thanks for the tip. I think I'll do the same thing. Where this tends to also get you is if some error occurs when rebuilding the image, depending on...
742
Fred T. Sanders
sandersfred
Jul 5, 2002 5:04 am
Now there is a nifty way of doing it, I like this better than the batch file I made. Fred ... From: "Joe Marshall" <prunesquallor@...> To:...
743
Bill Paterson
billp123ca
Jul 5, 2002 7:25 pm
I don't know if you're still looking for any ideas on the house swap problem. (My PC has been out of action due to a virus introduced by my kids). I have a...
744
greytalyn
Jul 6, 2002 7:04 am
I ran into an odd problem with the DIRECTORY function. When I evaluate the following expression: (directory "d:\\code92;\lisp92;\test-dir\92;1\\bleh92;\*.*") I recieve...
745
Roger Corman
rgcorman
Jul 6, 2002 7:37 am
Hi Paul, The code is not calling _findclose, and should be. This is keeping a handle to the directory open. Sorry about the problem. I'll post a correction. ...
746
Roger Corman
rgcorman
Jul 6, 2002 7:48 am
Here's a modified DIRECTORY function. You can make the same changes (calls to _findclose) in your function. (in-package :win32) (ct:defun-dll _findclose...
747
Paul D. Lathrop
greytalyn
Jul 6, 2002 8:55 am
Roger, Thank you very much for your prompt response. This solved the problem beautifully. Paul D. Lathrop...
748
Reini Urban
reiniurban
Jul 7, 2002 5:57 pm
chris lp module just doesn't work. I'm strongly for adding the logical pathnames functionality to filenames.lisp and removing the mk lp.lisp from the...
749
Chris Double
iamcdouble
Jul 7, 2002 8:18 pm
The following example works: (require 'lp) (use-package :lp) (setf (physical-host-type "c") :win32) (setf (logical-pathname-translations "ccl") '(("*.*.*"...
750
Carl Shapiro
lexpr_funcall
Jul 8, 2002 1:14 am
Macroexpansion of code inside of FUNCTION is broken. Here's and example: (defmacro my-ignore (x) (declare (ignore x)) nil) => MY-IGNORE (macroexpand-all...
751
Roger Corman
rgcorman
Jul 8, 2002 2:16 am
I checked this code (the LOSE function) in the 2.0 code stream, and it compiles without error. However, we had not made any change to the macro expansion code...
752
Joe Marshall
prunesquallor@...
Jul 8, 2002 2:56 am
... That's disappointing. Tail call optimization is very important to me....
753
Roger Corman
rgcorman
Jul 8, 2002 5:26 am
... May I ask why? I am not actually convinced of its value. I mean, I understand that it has value in certain circumstances, like all optimizations, but I...
754
Carl Shapiro
lexpr_funcall
Jul 8, 2002 7:12 am
From: "Roger Corman" <roger@...> Date: Sun, 7 Jul 2002 19:15:15 -0700 The reason the problem is not occurring in 2.0 is that for another completely...
755
Roger Corman
rgcorman
Jul 8, 2002 9:30 am
Well, partly because of your message I came up with a solution that will only disable tail call optimization in the case that there are embedded lambdas and...
756
Joe Marshall
prunesquallor@...
Jul 8, 2002 11:55 am
From: "Roger Corman" <roger@...> ... Well, I wouldn't say it is *more* important than other optimizations. I just find that the circumstances in which...
757
rene_de_v
Jul 8, 2002 1:00 pm
... You should note that tail-call optimization is only done in Corman Lisp when it is a direct (self call) situation, so that this is of no help in...
758
Joe Marshall
prunesquallor@...
Jul 8, 2002 1:57 pm
From: "rene_de_v" <Rene_de_Visser@...> ... I didn't check on that. I assumed (yeah, I know) that the tail-call optimization was for any call, not just...
759
rene_de_v
Jul 8, 2002 4:39 pm
... I don't see this as such a good solution. Even with full support for tail-calls you still need to do global CPS conversion on the program to move the...
760
Roger Corman
rgcorman
Jul 8, 2002 4:44 pm
... OK, noted! Roger ... From: Joe Marshall [mailto:prunesquallor@...] Sent: Monday, July 08, 2002 6:58 AM To: cormanlisp@yahoogroups.com Subject: Re:...
761
Joe Marshall
prunesquallor@...
Jul 8, 2002 5:02 pm
From: "rene_de_v" <Rene_de_Visser@...> To: <cormanlisp@yahoogroups.com> Sent: Monday, July 08, 2002 12:39 PM Subject: [cormanlisp] Re: compiler...
762
Roger Corman
rgcorman
Jul 8, 2002 5:55 pm
Here is a thread from last year, regarding tail call elimination. I discussed some of the problems and strategies used in Corman Lisp. ...
763
SmallHairyTroll
Jul 8, 2002 9:18 pm
Could someone provide the equivalent LISP code for the following ? typedef enum { SDL_FALSE = 0, SDL_TRUE = 1 } SDL_bool;...
764
SmallHairyTroll
Jul 8, 2002 9:38 pm
When entering the following from the CLL manual... transcribe-file "SDL.H" "SDL.lisp" ...I get the following error... ;;; An error occurred in function #<...
765
Roger Corman
rgcorman
Jul 8, 2002 9:38 pm
(win:defwinconstant SDL_FALSE 0) (win:defwinconstant SDL_TRUE 1) (win:defwintype SDL_bool :long) You have to be careful with the enum type. If it is embedded...
766
Roger Corman
rgcorman
Jul 8, 2002 11:09 pm
You don't need (require :parse-c-decls). You just need to refer to the function exported by the ct package: (ct:transcribe-file "SDL.H" "SDL.lisp") ;; this...
767
SmallHairyTroll
Jul 8, 2002 11:38 pm
I am trying to get SDL (www.libsdl.org) to work using CCL ffi. The first C prototype definition is causing me problems... extern DECLSPEC int SDLCALL...