From vanevery at indiegamedesign.com Mon Apr 11 09:22:47 2005 From: vanevery at indiegamedesign.com (Brandon J. Van Every) Date: Mon, 11 Apr 2005 02:22:47 -0700 Subject: [chicago-lisp] Greetings from Seattle Message-ID: Hi, I'm in Seattle. I co-run a group called SeaFunc, for Seattle functional programmers. We are a merger of local Lisp and ML groups. We figured we had better survival odds together than separate. We have a mailing list: http://groups.yahoo.com/group/SeaFunc/ I find it useful to stay coordinated with other user groups as they tend to have similar problems of organization, member retention, and growth. So hello! Cheers, www.indiegamedesign.com Brandon Van Every Seattle, WA "The pioneer is the one with the arrows in his back." - anonymous entrepreneur -- No virus found in this outgoing message. Checked by AVG Anti-Virus. Version: 7.0.308 / Virus Database: 266.9.5 - Release Date: 4/7/2005 From pjhyett at gmail.com Mon Apr 18 02:37:21 2005 From: pjhyett at gmail.com (PJ Hyett) Date: Sun, 17 Apr 2005 21:37:21 -0500 Subject: [chicago-lisp] Working through Practical Common Lisp Message-ID: Hi Lispers, I'm a total Lisp newbie working my way through the new Practical Common Lisp book and I've encountered an odd problem. Using these functions: (defun prompt-read (prompt) (format *query-io* "~a: " prompt) (force-output *query-io*) (read-line *query-io*)) (defun prompt-twice() (prompt read (prompt-read "hello")) Running this on the REPL: (prompt-twice) Gives me the following output: hello: hi hi: "" NIL The program exits before I have a change to enter anything on the hi: line. Any Lisp guys out there wanna set me straight? I'm using Lisp in a Box on Suse 9.2 Pro. Thanks, PJ -------------- next part -------------- An HTML attachment was scrubbed... URL: From bdowning at lavos.net Mon Apr 18 03:58:51 2005 From: bdowning at lavos.net (Brian Downing) Date: Sun, 17 Apr 2005 22:58:51 -0500 Subject: [chicago-lisp] Working through Practical Common Lisp In-Reply-To: ; from pjhyett@gmail.com on Sun, Apr 17, 2005 at 09:37:21PM -0500 References: Message-ID: <20050417225851.K21339@lavos.net> On Sun, Apr 17, 2005 at 09:37:21PM -0500, PJ Hyett wrote: > I'm a total Lisp newbie working my way through the new Practical Common Lisp > book and I've encountered an odd problem. Using these functions: > > (defun prompt-read (prompt) > (format *query-io* "~a: " prompt) > (force-output *query-io*) > (read-line *query-io*)) > > (defun prompt-twice() > (prompt read (prompt-read "hello")) > > Running this on the REPL: (prompt-twice) > > Gives me the following output: > hello: hi > hi: > > "" > NIL > > The program exits before I have a change to enter anything on the hi: line. > Any Lisp guys out there wanna set me straight? I'm using Lisp in a Box on > Suse 9.2 Pro. I think somebody reported a similar problem on slime-devel. Apparently the solution was to update Slime. I'm copying Peter on this this so he can test it and update his Slime in LispBox as appropriate. -bcd -- *** Brian Downing From awolven at yahoo.com Mon Apr 18 03:58:54 2005 From: awolven at yahoo.com (Andrew K. Wolven) Date: Sun, 17 Apr 2005 22:58:54 -0500 Subject: [chicago-lisp] Working through Practical Common Lisp References: Message-ID: <006a01c543ca$f1081260$0d00a8c0@Schmazelshmox> ----- Original Message ----- From: PJ Hyett To: chicago-lisp at common-lisp.net Sent: Sunday, April 17, 2005 9:37 PM Subject: [chicago-lisp] Working through Practical Common Lisp Hi Lispers, I'm a total Lisp newbie working my way through the new Practical Common Lisp book and I've encountered an odd problem. Using these functions: (defun prompt-read (prompt) (format *query-io* "~a: " prompt) (force-output *query-io*) (read-line *query-io*)) (defun prompt-twice() (prompt read (prompt-read "hello")) Running this on the REPL: (prompt-twice) Gives me the following output: hello: hi hi: "" NIL The program exits before I have a change to enter anything on the hi: line. Any Lisp guys out there wanna set me straight? I'm using Lisp in a Box on Suse 9.2 Pro. Works fine on Allegro and LispWorks. ?? AKW -------------- next part -------------- An HTML attachment was scrubbed... URL: