Didier Verna | 22 May 14:36
X-Face
Face
Picon
Picon
Picon
Picon
Gravatar

Clon 1.0b22 is out


  FYI, this new release now supports LispWorks. Thanks to Martin for
providing a fully functional version of LW 6.1.

http://www.didierverna.com/sciblog/index.php?post/2012/05/22/Clon-1.0b22-is-out

--

-- 
Resistance is futile. You will be jazzimilated.

Scientific site:   http://www.lrde.epita.fr/~didier
Music (Jazz) site: http://www.didierverna.com

_______________________________________________
Lisp Hug - the mailing list for LispWorks users
lisp-hug <at> lispworks.com
http://www.lispworks.com/support/lisp-hug.html

Paul Tarvydas | 15 May 16:45
Favicon

capi:clone


Is capi:clone implemented for the standard pinboard objects?  I would have expected so, but it appears not
to be the case (in LW61):

(capi:clone (make-instance 'capi:capi-object))

fails, same as for capi:ellipse.  Comments welcome.

pt

_______________________________________________
Lisp Hug - the mailing list for LispWorks users
lisp-hug <at> lispworks.com
http://www.lispworks.com/support/lisp-hug.html

Deepak Surti | 15 May 11:50
Picon
Gravatar

Capi input model on Mac OS X 10.7 for key/character does not work!

I am trying to run the input-model.lisp example under:

examples/capi/output-panes/input-model.lisp

However, except mouse inputs; key and char inputs do not work.

I am on Mac OS X 10.7 running Lispworks 6.0 Personal edition.

Any ideas appreciated?

Thanks,
Deepak
Camille Troillard | 14 May 17:31
Favicon
Gravatar

*error-output* and stderr


Hello,

I am working on a delivered executable on Mac OS X.
How do I send *error-output* to stderr and *standard-output* to stdout?

Best Regards,
Camille

??? | 11 May 13:37
Favicon

Remove me from the mail list

Dear sir,

 

could you please remove me  from the mail list, since I could not
find the way to do it myself.

 

Thank you in advance

 

 

 

Didier Verna | 11 May 11:22
X-Face
Face
Picon
Picon
Picon
Picon
Gravatar

Use of '--' on the command-line


  And here's a suggestion: it would be nice if Lispworks complied with
Posix by ignoring what's after '--' on its command-line (all other
compilers currently do so).

AFAICUI, the current behavior is to ignore options unknown to Lispworks,
and leave everything in *line-arguments-list*. This is almost OK because
you can pass any user-specific option to your session, but the problem
is the risk of collision with options that Lispworks already handles.

For instance, you cannot currently say something like this:

lispworks -load mystuff.lisp -- -build myprog ; myprog non-existant

because Lispworks tries to handle -build itself.

--

-- 
Resistance is futile. You will be jazzimilated.

Scientific site:   http://www.lrde.epita.fr/~didier
Music (Jazz) site: http://www.didierverna.com

Sally Sangwon Park | 11 May 09:40
Gravatar

Remove me from the mailing list


Dear sir, 

could you please remove me  from the mail list, since I could not
find the way to do it myself.

Thank you in advance

--
Sally Sangwon Park
Kstartup Project Manager 

Cell: +82)10-9287-6632
Email: sallypark <at> me.com
Skype: @psw1223
Twitter: @psw1223
Facebook: facebook.com/sallypark1223

aouss gabash | 11 May 08:51
Picon
Favicon

Remove me from the mail list

Dear sir,

could you please remove me  from the mail list, since I could not
find the way to do it myself.

Thank you in advance
zhao yh | 10 May 18:11
Picon

remove from the mail list


Dear sir,  please remove me  from the mail list, since I could not
find the way to do it myself. Thank you

Ala'a Mohammad | 10 May 18:04
Picon

linux ide question


Hi,

I'm using the following in my .lispworks

;; initially from http://article.gmane.org/gmane.lisp.lispworks.general/3122
;; the small annoying window toolbar is called lispworks-echo-podium
;; note that lispwoks has lispworks-podium, but is not exported
(defparameter *the-echo-podium* nil)

(define-action "CAPI Create Interface"
              "catch the echo podium"
              #'(lambda (interface)
                  (when (typep interface 'lw-tools:lispworks-echo-podium)
                    (capi:hide-interface interface nil)
                    (setf *the-echo-podium* interface))))

;; I tried to kill the podium in the previous stage, but it seems that
it is being checked for at startup, so I needed to catch it,
;; and then kill it later on
(define-action "Initialize LispWorks Tools"
              "Kill this echo podium"
               #'(lambda (obj)
                   (declare (ignore obj))
                   (capi:quit-interface *the-echo-podium* :force t))
               :after "Create default the tools"
               :before "Run the environment start up functions")

HIH,

Regards,

Ala'a

On Thu, May 10, 2012 at 6:37 PM, Art Obrezan <artobrezan <at> yahoo.com> wrote:
>
> Hello -
>
> LW 6.1 linux 32bits. When it starts there are two windows, the "main" one with a toolbar and menus and the
listener window. The "main" window is actually of no use because one can access all tools via menus in
listener, editor, etc. windows. I can manually close that "main" window after the startup and proceed
with work.
>
> Question: how can I automatically close that "main" window during the startup? Any tricks to add to the
.lispworks file?
>
> Best,
>  Art
>

Didier Verna | 10 May 17:52
X-Face
Face
Picon
Picon
Picon
Picon
Gravatar

Re: accessing a stream's file descriptors


Tim Bradshaw <tfb <at> cley.com> wrote:

> I don't think all streams even have file descriptors.

  Yeah, that's true. It seems to me that TERMINAL-STREAMs should,
though. As per Paul's suggestion, I introspected a bit and the only
thing I could see so far is a slot named OUTPUT-HANDLE which sounds
kinda nice, but its value for *terminal-io* is T, not an fd... :-/

> On the mac implementation there's a class
> stream::os-file-handle-stream, and I guess those are the ones that
> correspond to filehandles in the underlying system.

  Probably (hence Nick's suggestion). However, even in a standalone
console application (delivered from Lispworks), a TERMINAL-STREAM such
as *terminal-io* has no relation with an OS stream, and that currently
escapes me...

--

-- 
Resistance is futile. You will be jazzimilated.

Scientific site:   http://www.lrde.epita.fr/~didier
Music (Jazz) site: http://www.didierverna.com


Gmane