... Word) ... It will be really nice to have a much higher level wrapper for accessing Outof Proc com objects. Cormanlisp seems to be capable of talking to com...
400
Reini Urban
rurban@...
Oct 2, 2001 10:13 am
Hi Pj, ... I would really love to start hacking this together, but my business schedule is very tight in the moment, at least until january 2002. And my COM...
About my GUI problem, does anyone has some thoughts about how to solve it, is it my mistache??? Could you please help me? Thanks, Jose' Faria...
402
Roger Corman
roger@...
Oct 5, 2001 6:09 am
This problem usually happens when you are referring to structure field names. While most of the names of structures, types and windows OS functions are ...
Yes, i thought so also, i checked that but i could find any thing... Besides the problematic functions are in package ct... Do i have to bee in package win to...
404
krzysztofk@...
Oct 6, 2001 3:01 am
I tried to run Corman's port of AllegroServe. I'm a Lisp begginer and I was stopped in my tracks by the fact that apparently the syntax: (:export #:html ...
405
JP Massar
massar@...
Oct 6, 2001 3:24 am
... What error message are you getting? Is this (:export ...) construct inside a DEFPACKAGE ? #. certainly seems to work in Corman Lisp: Here's what I get...
406
JP Massar
massar@...
Oct 6, 2001 4:09 am
... Oh, barf. The way my Eudora screen is displaying #: the top 'dot' of the colon is completely masked by the number sign. So I was reading this as...
407
JP Massar
massar@...
Oct 6, 2001 5:00 am
... The problem seems to be that DEFPACKAGE is calling EXPORT-CREATE with a symbol argument which is calling FIND-SYMBOL and INTERN with said same symbol...
408
Krzysztof Kowalczyk
krzysztofk@...
Oct 6, 2001 5:22 am
Thanks a lot, that seems to be it. ... From: JP Massar The problem seems to be that DEFPACKAGE is calling EXPORT-CREATE with a symbol argument which is calling...
409
vik jain
vikjain2@...
Oct 6, 2001 6:23 pm
hello, i am new to lisp i am facing the following problem i tried a couple of things but i am still getting stuck . i have to basically append to lists eg. ((1...
410
JP Massar
massar@...
Oct 6, 2001 7:08 pm
... You need to be clear on what you want to do. The lists ((1 2)) and ((3 4)) are very special lists, in that they are each lists of exactly one element, and...
411
vik jain
vikjain2@...
Oct 6, 2001 8:03 pm
thanks a lot for ur help appreciate it.. __________________________________________________ Do You Yahoo!? NEW from Yahoo! GeoCities - quick and easy web site...
412
Wayd Wolf
waydwolf@...
Oct 7, 2001 9:32 pm
Hi all, I downloaded and installed the new Corman LISP package, and downloaded the patches and put them in the /sys/ directory, then followed the directions to...
413
Chris Double
DoubleC@...
Oct 7, 2001 9:38 pm
Hi, Can you give an example of the errors you are getting trying to run a sample? The response about a missing ~a file is normal btw, and waiting for a while,...
414
Wayd T Wolf
waydwolf@...
Oct 7, 2001 10:01 pm
... From: "Chris Double" <DoubleC@...> To: <cormanlisp@yahoogroups.com> Sent: Sunday, October 07, 2001 5:35 PM Subject: Re: [cormanlisp] Corman LISP new...
415
Chris Double
DoubleC@...
Oct 7, 2001 10:09 pm
Hi, The 'function not defined' warning can safely be ignored in this instance. It is caused by functions in the .lisp file being referenced before they are...
416
Rene_de_Visser@...
Oct 8, 2001 8:00 am
Hello, I have a program in which the parameters often include large arrays, or structures containing large arrays. When I do a stack trace, the parameters for...
417
Roger Corman
roger@...
Oct 8, 2001 5:12 pm
Hi Rene, The common lisp printer variables *print-length* *print-array* can help you here. You set *print-length* to the maximum number of elements you want...
418
JP Massar
massar@...
Oct 10, 2001 5:04 am
These functions don't accept T or NIL as their STREAM arguments. The hyperspec says they are supposed to. You have code in WRITE-CHAR that handles setting...
419
Roger Corman
roger@...
Oct 10, 2001 6:36 am
Yes, I know these functions need to be fixed. Roger...
Hello! I can'not understand why most advanced object system CLOS can not handle this (looks like methods overwrite each over): (defclass <test> ()) (setf obj...
422
Raffael Cavallaro
raffael@...
Oct 12, 2001 12:26 pm
... Shouldn't this result in an incompatible lambda list error to begin with? (The two methods are not congruent in their lambda lists). What you want is...
423
Marco Antoniotti
marcoxa@...
Oct 12, 2001 2:32 pm
Hi, I just installed Corman Lisp 1.5 (quite an improvement over 1.4). I may be asking a stupid question, but, in my lazyness, I couldn't find it in the docs. ...
... Yes. The file init.lisp in the Corman Lisp 1.5 directory loads at startup. You can edit it to load your own initialization file....
426
JP Massar
massar@...
Oct 13, 2001 7:27 pm
I'm not sure I understand how I am supposed to use this functionality. I loaded a bunch of stuff into a newly started Corman Lisp, then did a SAVE-IMAGE to a...
427
Roger Corman
roger@...
Oct 14, 2001 12:06 am
... What you are doing should work. I think your problem is that the *package* variable is being set to a package which does not use the cormanlisp package. It...
428
JP Massar
massar@...
Oct 14, 2001 1:50 am
... Right, I did an (in-package :*lisp) before I did the SAVE-IMAGE. ... Seems like the obviously correct choice is to have in IN-PACKAGE form in the init.lisp...
429
shirley_widyaningsih@...
Oct 14, 2001 2:39 am
Dear friends, I'm a beginner at Lisp. I wanna make some function called union and intersection using cadr and car, but I found it difficult . When we click on...