-- *load-print* not being defined -- export not working correctly -- see previous mail to this list -- defpackage :shadowing-import-from option not working --...
370
José Alexandre Ant...
supremez@...
Sep 26, 2001 10:30 pm
... From: "Chris Double" <chris@...> To: <cormanlisp@yahoogroups.com> Sent: Tuesday, September 25, 2001 10:18 PM Subject: Re: [cormanlisp] GUI ... Try...
371
Roger Corman
roger@...
Sep 26, 2001 11:26 pm
The defstruct problem: Thanks for reporting this. COMPILE-FILE does not get much use, I don't think-- most people use LOAD and save images and applications. I...
372
JP Massar
massar@...
Sep 27, 2001 12:45 am
... The code base I was trying out Corman Lisp on has its out little DEFSYSTEM, which does a sequence of COMPILE-FILE39;s and LOAD's on each file in the system...
373
webbsu@...
Sep 27, 2001 2:09 am
Hi everyone, I am a final year computer science student in Western Australia. For a group project we are trying to learn everything we can about LISP without...
374
Fred T. Sanders
fred@...
Sep 27, 2001 2:24 am
Yahoo Stores is written in lisp. Fred ... From: <webbsu@...> To: <cormanlisp@yahoogroups.com> Sent: Wednesday, September 26, 2001 10:09 PM Subject:...
375
Chris Double
DoubleC@...
Sep 27, 2001 2:33 am
Hi Sue, The first thing you might want to notice is the modern spelling of Lisp is not all uppercase. It is spelt as per a normal word with capitilisation of...
376
Roger Corman
roger@...
Sep 27, 2001 6:33 am
... As you are a final year computer science student, my advice is to learn it. Surely you have learned several languages by now. It isn't that hard to learn....
377
Roger Corman
roger@...
Sep 27, 2001 6:40 am
At 05:44 PM 9/26/2001 -0700, you wrote: I am confused as to whether the semantics of your COMPILE-FILE function are ... You are correct--the way COMPILE-FILE...
378
Roger Corman
roger@...
Sep 27, 2001 7:26 am
I have placed two new files: structures.lisp and compile-file.lisp in the Corman Lisp 1.5 patches directory: http://corman.net/CormanLisp/patches/1_5/ This...
379
JP Massar
massar@...
Sep 27, 2001 7:39 am
... Here is a related, though I believe distinct, problem. Consider the file corman.lisp ... (in-package :cl-user) (eval-when (:compile-toplevel...
380
Roger Corman
roger@...
Sep 27, 2001 8:10 am
Currently, the compiler only has implemented the :execute behavior. If you don't have :execute specified, then the eval-when contents will not be evaluated...
381
JP Massar
massar@...
Sep 27, 2001 8:32 am
(deftype type1 (&optional (element-type '*)) `(integer ,element-type 5)) ;;; An error occurred in function TYPE-DESTRUCTURE-BIND: ;;; Error: The variable...
382
Rene_de_Visser@...
Sep 27, 2001 10:55 am
... I myself would appreciate it, if it were possible to have a warning of variable access to a variable not defined in the current lexical scope and also not...
383
rohan nicholls
nichollsrohan@...
Sep 27, 2001 12:45 pm
Just like to add to this: I have come to programming through the quick and dirty route via the web, and can only say that I did a lot of research into a...
384
rohan nicholls
nichollsrohan@...
Sep 27, 2001 3:21 pm
Question about the executable to use for cgi script experiments. Which if the executables if any should I use as the script engine for cgi scripts? Or is this...
385
JP Massar
massar@...
Sep 27, 2001 7:22 pm
;;; An inaccessible symbol is being printed w/o a package prefix. ;;; In Corman Lisp (defpackage fred (:shadow "CONS") (:use "COMMON-LISP")) #<PACKAGE "FRED"> ...
386
JP Massar
massar@...
Sep 28, 2001 12:12 am
(deftype defined-float (&optional mantissa exponent) (declare (ignore mantissa exponent)) 'float) Warning: function not defined: DECLARE Warning: function not...
387
JP Massar
massar@...
Sep 28, 2001 2:10 am
;;; IGNORE is noted by the compiler, but IGNORABLE is not. ;;; But if a variable is declared IGNORE, and it is actually ;;; used, the compiler does not note...
388
webbsu@...
Sep 28, 2001 2:37 am
Hi again, Thanks everyone for your information on the future directions of Lisp. When I said we weren't actually learning the language I meant as a unit of...
389
JP Massar
massar@...
Sep 28, 2001 2:40 am
Consider (defun foo (z) (multiple-value-bind (y x) (values z 5) (+ y x))) which works fine. Now change Z to X (defun foo (x) (multiple-value-bind (y x) (values...
390
manish upadhyay
kumarmanishu@...
Sep 28, 2001 8:27 am
hi lisp users, i recently involve myself into AI and doing lisp for around three months.i want to continue it.is there any development centre in...
391
José Alexandre Ant...
supremez@...
Sep 28, 2001 9:28 am
Could anyone please help me out with my gui problem? Can you Mr Corman? Any ideas, please? Thanks, José Faria...
392
Raffael Cavallaro
raffael@...
Sep 28, 2001 12:49 pm
On Thursday, September 28, 2000, at 05:37 AM, José Alexandre Antunes ... First idea - set your calendar date to something in the year *2001*. Primer idea -...
393
Raffael Cavallaro
raffael@...
Sep 28, 2001 12:50 pm
On Thursday, September 28, 2000, at 05:37 AM, José Alexandre Antunes ... disculpe - I thought you were writing from spain, but I now see you are Portuguese. ...
394
Reini Urban
rurban@...
Sep 28, 2001 1:49 pm
... That depends entirely on the webserver, apache or IIS and your setup. Apache needs the absolute path to the starter exe, which should take the script as...
395
Reini Urban
rurban@...
Sep 28, 2001 2:00 pm
... We had this discussion in summer at news:comp.lang.lisp where I said there there's nobody in india doing lisp, and shriram krishnamurti contered with a...
396
José Alexandre Ant...
supremez@...
Sep 28, 2001 3:38 pm
Some scripts are changing my date, first it was to WTC attack date and hour, now this... I have to get the creep behind this... By the way can you help me with...
397
JP Massar
massar@...
Sep 28, 2001 4:11 pm
Consider the following files, corman1.lisp and corman2.lisp (in-package :cl-user) (defstruct foo a b) (defun foo-izer () (let ((x (make-foo))) (setf (foo-a x)...
398
JP Massar
massar@...
Sep 28, 2001 6:14 pm
(macro-function 'xyzzy nil) ;;; An error occurred in function _WRONG-NUMBER-OF-ARGS-ERROR: ;;; Error: Wrong number of arguments The function is defined in...