... some minor observations: (CreateProcess "c:\\program files\92;winbatch92;\tibbs92;\code92;\tibbs_cp.wbt", cl::C_NULL, lpProcessAttributes, lpThreadAttributes, 0, ...
550
Reini Urban
reiniurban
Mar 17, 2002 7:07 pm
... BTW: better use HINSTANCE ShellExecute( HWND hwnd, LPCTSTR lpOperation, LPCTSTR lpFile, LPCTSTR lpParameters, LPCTSTR lpDirectory, INT nShowCmd ); see ...
551
Roger Corman
rgcorman
Mar 18, 2002 12:16 am
... Hi Clark, On the subject of malloc, when you call ct:malloc a finalizer automatically gets set up which will free the allocated C-heap block when the lisp...
552
wilsonch0
Mar 19, 2002 1:09 pm
Okay, I'm feeling my way here, holler if I'm heading the wrong direction. I reduced the code I was trying to execute to these two lines, which Reini had put at...
553
wilsonch0
Mar 19, 2002 1:19 pm
... [snip] ... [snip] Still executing just: (use-package '(:win :ct)) (require :winbase) So I deleted the winbase.lisp line that declared IGNORE. And I got a ...
554
mikehalpinuk
Mar 20, 2002 9:45 am
... question ... to do ... file? How ... and ... background ... people do a ... that I have ... object ... there are ... mostly ... methodologies. ... once I ...
555
hitureas
Mar 28, 2002 8:47 am
Here is a place you can find lots of good deals on credit cards. I have the worst credit and I was approved! Click on link Below! http://apply4creditcard.com...
556
Joe Marshall
prunesquallor@...
Apr 1, 2002 9:30 pm
With the appropriate registry settings, you can make it so that clicking on a corman lisp image file launches it. My settings are reproduced below. Another...
557
Chris Double
DoubleC@...
Apr 3, 2002 11:19 pm
I've pasted below a copy of clipboard.lisp, some functions I use for using the clipboard during development. Sometimes I have a console version of CL running...
558
Chris Double
DoubleC@...
Apr 3, 2002 11:38 pm
Add the following to gain the ability to write strings to the clipboard. This allows you to write editor macros. For example, you can write a function that...
559
Chris Double
DoubleC@...
Apr 4, 2002 2:37 am
Here's an example of a simple clipboard filter function to comment out a region. It will place '#| ... |# ' guards around the text in the clipboard. To use,...
560
Chris Double
iamcdouble
Apr 5, 2002 11:45 am
The following code works fine: (defun x () (write-char #\( *standard-output*) (write-char #\) *standard-output*)) The following crashes: (defun x () ...
561
Chris Double
iamcdouble
Apr 5, 2002 12:41 pm
I've narrowed it down a bit more. The following causes the error as well: #\null Chris....
562
Chris Double
iamcdouble
Apr 5, 2002 1:01 pm
The following code used to work in CCL 1.42: (defpackage x (:use :common-lisp) (:export #:junk)) In CCL 1.5 I get the error: ;;; An error occurred in function...
563
Chris Double
iamcdouble
Apr 5, 2002 1:20 pm
I've updated the SQL-ODBC and AllegroServe packages to work with Corman Lisp 1.5. They are available at: http://www.double.co.nz/cl Unfortunately the SQL-ODBC...
564
Marco Antoniotti
marcoxa@...
Apr 5, 2002 3:56 pm
... (with-noise-ahead " Well, the real question is: can Franz fix its kludgy and non backward compatible support for case sensitivity? :) ") Cheers -- Marco...
565
Chris Double
DoubleC@...
Apr 7, 2002 9:07 pm
... Is the defpackage format that ACL tends to use non standard in some way? I'm talking about the use of '#:somename39; for names of packages and exports, etc. ...
566
Chris Double
DoubleC@...
Apr 7, 2002 9:09 pm
Is there a defsystem that works with CCL 1.5? Has anyone managed a port of the one available at clocc.sf.net? Chris. http://www.double.co.nz/cl ... Disclaimer:...
567
Marco Antoniotti
marcoxa@...
Apr 7, 2002 9:27 pm
... No it is not non-conforming, but it is aesthetically unpleasant, forces you to use (uninterned) symbols, and it may have efficiency side-effects on non ACL...
568
Marco Antoniotti
marcoxa@...
Apr 7, 2002 9:33 pm
... I compiled and lighlty tested MK:DEFSYSTEM 3.x under CormanLisp 1.5. The problems seems to be some bugs in CCL w.r.t. USER-HOMEDIR-PATHANME ...
569
Chris Double
DoubleC@...
Apr 7, 2002 10:17 pm
... I avoided those wars thankfully. Can you summarise your approach? I tend to use uppercase strings, is that a reasonable approach? eg: (defpackage apackage ...
570
Chris Double
DoubleC@...
Apr 7, 2002 10:24 pm
Reini Urban did some fixes for COMPILE-FILE-PATHNAME if I recall correctly. For details see: http://xarch.tu-graz.ac.at/autocad/lisp/cormanlisp/ His fix for...
571
Marco Antoniotti
marcoxa@...
Apr 7, 2002 10:39 pm
... The problem with Franz case sensitivity modes, is that the above (which *is* conformant *and* portable) will wreck havoc if you use ACL in non-ANSI mode....
572
Chris Double
DoubleC@...
Apr 8, 2002 1:54 am
If I have a file over 2KB in length, for example, generated as follows: (with-open-file (fs "e:/t1.txt" :direction :output) (loop for n from 0 below 2100 do...
573
Chris Double
DoubleC@...
Apr 8, 2002 2:18 am
Further tracking down reveals the problem to be not checking for end of file before the (setq ch ...) line. Before this line you need code similar to: (if (=...
574
Joe Marshall
prunesquallor@...
Apr 8, 2002 3:02 am
From: "Chris Double" <DoubleC@...> ... Neither. It is %HOMEDRIVE%%HOMEDIR% The code below fetches it. Incidentally, it is a bad idea to set %HOME% on...
575
Roger Corman
rgcorman
Apr 8, 2002 5:50 am
Thanks Chris. I will get this into the code stream for the next release or patch. Roger...
576
Marco Antoniotti
marcoxa@...
Apr 8, 2002 3:17 pm
... That is not acceptable. (COMPILE-FILE-PATHNAME (make-pathname :name "foo")) shoule retur a single value: the pathname that COMPILE-FILE would write to. ......
577
Marco Antoniotti
marcoxa@...
Apr 8, 2002 3:28 pm
... This is a good start. However, when producing fixes to ANSI mandated functions, please refer to the CLHS. First of all, USER-HOMEDIR-PATHNAME takes an...