Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

cormanlisp · Corman Lisp

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 331
  • Category: Lisp
  • Founded: Feb 9, 2001
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 738 - 767 of 1707   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
738 greytalyn Send Email Jul 2, 2002
7:11 pm
*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 Send Email
Jul 2, 2002
7:15 pm
yep, you didn't delete the image file first. ... From: "greytalyn&quot; <pdlathro@...> To: <cormanlisp@yahoogroups.com> Sent: Tuesday, July 02, 2002 3:11...
740 Joe Marshall
prunesquallor@... Send Email
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 Send Email
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 Send Email
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 Send Email
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 Send Email Jul 6, 2002
7:04 am
I ran into an odd problem with the DIRECTORY function. When I evaluate the following expression: (directory "d:\\code&#92;\lisp&#92;\test-dir\&#92;1\\bleh&#92;\*.*") I recieve...
745 Roger Corman
rgcorman Send Email
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 Send Email
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 Send Email
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 Send Email
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 Send Email
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 Send Email
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 Send Email
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@... Send Email
Jul 8, 2002
2:56 am
... That's disappointing. Tail call optimization is very important to me....
753 Roger Corman
rgcorman Send Email
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 Send Email
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 Send Email
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@... Send Email
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 Send Email 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@... Send Email
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 Send Email 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 Send Email
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@... Send Email
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 Send Email
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 Send Email 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 Send Email 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 Send Email
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 Send Email
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 Send Email 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...
Messages 738 - 767 of 1707   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help