Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
SBCL Slime and emacsW32
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  7 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
An[z]elmus  
View profile  
 More options Mar 2 2009, 5:58 pm
Newsgroups: comp.lang.lisp
From: "An[z]elmus" <some...@somewhere.org>
Date: Mon, 02 Mar 2009 23:58:48 +0100
Local: Mon, Mar 2 2009 5:58 pm
Subject: SBCL Slime and emacsW32
Emacs 22.3.1
Last CVS version of Slime
SBCL 1.0.22
Windows XP

CL-USER> (dotimes (i 10) (format t "~A~%" i))
NIL

CL-USER> (loop for i in '(1 2 3 4 5) do (print i))
NIL

Nothing is printed, only the return value NIL.
This does not happen with CLISP.
Trying to set up Slime and emacs and SBCL or CLISP in Windows was
really not without problems.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Pascal J. Bourguignon  
View profile  
 More options Mar 2 2009, 9:38 pm
Newsgroups: comp.lang.lisp
From: p...@informatimago.com (Pascal J. Bourguignon)
Date: Tue, 03 Mar 2009 03:38:34 +0100
Local: Mon, Mar 2 2009 9:38 pm
Subject: Re: SBCL Slime and emacsW32

I wonder if adding a (finish-output) would help? Try:

(dotimes (i 10 (finish-output)) (format t "~A~%" i))
(loop :for i :in '(1 2 3 4 5) :do (print i) :finally (finish-output))

--
__Pascal Bourguignon__


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
D Herring  
View profile  
 More options Mar 2 2009, 11:03 pm
Newsgroups: comp.lang.lisp
From: D Herring <dherr...@at.tentpost.dot.com>
Date: Mon, 02 Mar 2009 23:03:47 -0500
Local: Mon, Mar 2 2009 11:03 pm
Subject: Re: SBCL Slime and emacsW32

sb-sys::serve-event (used by slime) is known to be broken on MSWin.
If you want to help fix it, track down Alastair Bridgewater.

IIRC, this is broken because POSIX (read: real) OSs can call select()
and friends on the same file descriptor used by read() and friends.
MSWin uses one file handle for reading and a separate event handle for
activity callbacks.  SBCL was designed for a single file id.  Some
hacking required to attach event handles to file handles...

- Daniel


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
An[z]elmus  
View profile  
 More options Mar 3 2009, 5:14 am
Newsgroups: comp.lang.lisp
From: "An[z]elmus" <some...@somewhere.org>
Date: Tue, 03 Mar 2009 11:14:22 +0100
Local: Tues, Mar 3 2009 5:14 am
Subject: Re: SBCL Slime and emacsW32
On Tue, 03 Mar 2009 03:38:34 +0100, p...@informatimago.com (Pascal J.

No, unfortunetly it doesn't help, still no side-effects-print-format
visible, only the value returned.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
An[z]elmus  
View profile  
 More options Mar 3 2009, 5:30 am
Newsgroups: comp.lang.lisp
From: "An[z]elmus" <some...@somewhere.org>
Date: Tue, 03 Mar 2009 11:30:47 +0100
Local: Tues, Mar 3 2009 5:30 am
Subject: Re: SBCL Slime and emacsW32
On Mon, 02 Mar 2009 23:03:47 -0500, D Herring

All I found so far I is an e-mail address from a WEB page last updated
on june 2004.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
D Herring  
View profile  
 More options Mar 3 2009, 7:51 am
Newsgroups: comp.lang.lisp
From: D Herring <dherr...@at.tentpost.dot.com>
Date: Tue, 03 Mar 2009 07:51:44 -0500
Local: Tues, Mar 3 2009 7:51 am
Subject: Re: SBCL Slime and emacsW32

Try this:
http://sourceforge.net/users/lisphacker

- Daniel


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
An[z]elmus  
View profile  
 More options Mar 3 2009, 9:16 am
Newsgroups: comp.lang.lisp
From: "An[z]elmus" <some...@somewhere.org>
Date: Tue, 03 Mar 2009 15:16:48 +0100
Local: Tues, Mar 3 2009 9:16 am
Subject: Re: SBCL Slime and emacsW32
On Mon, 02 Mar 2009 23:58:48 +0100, "An[z]elmus"

<some...@somewhere.org> wrote:
>Emacs 22.3.1

I apologize, in the subject I mentioned erroneously EmacsW32. Infact I
meant just Emacs for Windows, which what I am using.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »