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 1554 - 1583 of 1707   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
1554 SmallHairyTroll Send Email Jul 1, 2003
8:52 am
Hi John, I have not been successful getting CCL 2.x to work in XEmacs under either ilisp or inferior Lisp. XEmacs 'hangs&#39; for a couple of minutes after: M - x...
1555 John Thingstad
younder2003 Send Email
Jul 1, 2003
11:44 pm
On Mon, 30 Jun 2003 17:15:18 +1200, John Pallister <john@...> ... I have Corman working with Emacs 20. Should work with XEmacs. Try adding some of...
1556 SmallHairyTroll Send Email Jul 2, 2003
12:11 am
If anyone is interested in converting the Corman Lisp project files, which are currently in Visual Studio 7 format, back to Visual C++ version 6 format, this...
1557 Rohan Nicholls
rohannicholls Send Email
Jul 10, 2003
11:58 am
I am working at the moment on a windows machine, using asp (not .Net), and am interested in using corman lisp as a scripting language, and know almost nothing...
1558 Marco Antoniotti
marcoxa@... Send Email
Jul 10, 2003
2:50 pm
It is not all that relevant, but I did a preliminary implementation of the IActiveScript (or should it be called the IActiveCrap interface :) ) for LW. It is...
1559 realxset Send Email Jul 20, 2003
9:06 am
Hi I've almost done CormanLisp IActiveScript implementation. It processes scripts and does output, but where is some bugs under IIS (I've tested it as embedded...
1560 Rohan Nicholls
rohannicholls Send Email
Jul 23, 2003
9:08 am
Is there anything I can do to help? I don't have a lot of time, but am motivated to make this happen, the more I am messing around in vbscript.:-| rohan ... ...
1561 Dmitry
craft095 Send Email
Jul 24, 2003
7:16 am
Hi All, The problem is that CormanLispServer&#39;s COM interface has only ProcessSource method to execute lisp code from C++-program. Unfortunately, sometimes...
1562 Roger Corman
rgcorman Send Email
Jul 25, 2003
5:19 pm
The DirectCall interface and functions created in DLLs all direct calls from C++ to compiled lisp code. Roger...
1563 Jong-Kyou Kim
kr_jkkim Send Email
Jul 26, 2003
1:56 pm
Hi All, I know that it is possible to call dll exported functions within cormanlisp. But I'd like to call a C function which is passed as a function pointer. ...
1564 Chris Double
doublecnz Send Email
Jul 26, 2003
10:26 pm
... Yes, it's definitely possible. Have a look through the archives of the mailing list and you'll find your answer. It was asked a month or two ago I believe ...
1565 Jong-Kyou Kim
kr_jkkim Send Email
Jul 27, 2003
4:06 am
Hi Chris, Thank you very much for your information. I needed this information because I found that it would be quite interesting if we could wrap corman lisp...
1566 realxset Send Email Jul 27, 2003
11:21 am
Hi This feature will take some time to make it stable. Also I was going to make IDispatch support in CCL to make possible using another objects within CCL...
1567 Kevin
srphm7 Send Email
Jul 27, 2003
9:19 pm
I am interested in portableaserve&#39;s client functionality. I have followed the instructions provided by Chris Double to successfully load the portableaserve...
1568 Chris Double
doublecnz Send Email
Jul 27, 2003
9:30 pm
... Instead of ':c 1' can you do a backtrace of the stack (:b I think) and post that. Are you using the CVS version of portable aserve? Chris....
1569 Kevin
srphm7 Send Email
Jul 27, 2003
9:35 pm
... Yah started with the latest CVS. Here is the backtrace. Thank you for the help. ;;; Returning to top level loop. ?(net.aserve.client:do-http-request...
1570 Kevin
srphm7 Send Email
Jul 27, 2003
9:41 pm
... ;;; An error occurred in function DO-HTTP-REQUEST: ;;; Error: No catch block was found to match the throw tag: (0 . 0) ;;; Entering Corman Lisp debug loop....
1571 Chris Double
doublecnz Send Email
Jul 27, 2003
10:20 pm
The problem appears to be the following lines of code in client.cl: (values (if (eq format :text) (let ((result (make-string (length body)))) (map-into result...
1572 Kevin
srphm7 Send Email
Jul 27, 2003
10:27 pm
... integers ... That did it! How did it get submitted into CVS like that to begin with? Does this work in any other implementation? Should I submit this to...
1573 Kevin
srphm7 Send Email
Jul 27, 2003
10:35 pm
... ported ... Well, I may have spoke to soon. ?(net.aserve.client:do-http-request "http://www.franz.com") ... \n #\k #\SPACE #\r #\e #\l #\= #\" #\s #\t #\y...
1574 Chris Double
doublecnz Send Email
Jul 27, 2003
10:51 pm
... Try the following (untested): (values (if (eq format :text) (let ((result (make-string (length body)))) (map-into result #'identity body) result) body) ...
1575 Frank Berthold
zdiles Send Email
Jul 31, 2003
5:00 am
Hi all, I'm trying to find a way to list the directories in a given pathname, when I use: (directory (make-pathname ... I get a list of all of the files in c:,...
1576 JP Massar
jpmassar Send Email
Jul 31, 2003
3:34 pm
... I have code which does this, which I sent to Frank. If anyone else would like it send me a note....
1577 Norbert Lehmann
lehmannn2002 Send Email
Aug 5, 2003
8:44 am
Hello I have a file which contains some double floats (8 bytes) and some integer values (4 bytes). I would like to read these double floats and the integer ...
1578 JP Massar
jpmassar Send Email
Aug 5, 2003
8:27 pm
... Seems like the easiest approach would be for you to implement versions of READ-INTEGER, READ-FLOAT, etc. If the source for these functions in CLisp is...
1579 Roger Corman
rgcorman Send Email
Aug 7, 2003
8:56 am
Here are some functions to read/write double floats as 64-bit binary values, low-byte first. This should help, or you can probably see how to modify them for...
1580 Mayer Goldberg
mayer_goldberg Send Email
Aug 7, 2003
1:45 pm
Hello: Has anyone succeeeded in running Corman Common Lisp under GNU Emacs under Windows?? I tried and got the message "spawning child process: invalid ...
1581 John Thingstad
younder2003 Send Email
Aug 7, 2003
2:30 pm
On Thu, 07 Aug 2003 16:45:46 +0200, Mayer Goldberg <gmayer@...> ... I am runnning corman lisp under emacs even as we speak. (writing a otello program...
1582 christophe
cturle Send Email
Aug 13, 2003
10:12 pm
hello ! has someone tried AP5 ( ap5.com ) under CCL ? I search the files to make it work. Else, i will try to do the work....
1583 christophe
cturle Send Email
Aug 21, 2003
12:46 am
Modules/sockets.lisp CCL 2.01 Win98 SE ... replace or change the definition of 'new-write-line' like this : ;; add 0 as default value of start, ctu :...
Messages 1554 - 1583 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