Lispwork socket-stream question (beyond base-char)037 (6/7/2007 3:44:22 AM) comp.lang.lisp (make-instance 'comm:socket-stream :socket socket-handle :direction :io :element-type 'character) Hello: I want a socket-stream which is a character s... sailormoontw
Lispbuilder any upgrade??133 (4/18/2007 1:37:45 PM) comp.lang.lisp Hello: It seems to me that lispbuilder seems to stop progressing after October 2006. It's a nice project and I hope it can progress. Thanks. ... sailormoontw
I still cannot understand eval-when922 (2/1/2007 9:40:06 AM) comp.lang.lisp Hi: I've read the hyperspec, but eval-when, the difference of "when to evaluate" I still cannot understand, any easier document for eval-when I can get ?? Thanks ... sailormoontw
Conversion to keyword1329 (2/1/2007 1:58:22 AM) comp.lang.lisp Hello: Is there any way to convert from a name to a keyword? like this (code is still under development, not finished) (defmacro defclass-simple (class parent-class definition) `(defclass ,class ,parent... sailormoontw
Next Generation of Language9726 (1/8/2007 1:21:24 PM) comp.lang.lisp >From this link http://itpro.nikkeibp.co.jp/a/it/alacarte/iv1221/matsumoto_1.shtml (Note : Japanese) Matsu, the creator of Ruby, said in the next 10 years, 64 or 128 cores desktop computers will be common, it'... sailormoontw
what flet doesn't work here??1123 (12/23/2006 9:08:25 AM) comp.lang.lisp Hello: CL-USER 3 : 1 > (defun a () "a1") A CL-USER 4 : 1 > (defun b () (a)) B CL-USER 5 : 1 > (b) "a1" CL-USER 6 : 1 > (flet ((a () "a2")) (b)) "a1" I suppose it should print a2, but it still prints a1. wh... sailormoontw
Chinese Characters730 (12/14/2006 2:03:28 AM) comp.lang.lisp Hello: (write-line "=A6=A8=A5\") failed in both SBCL and Corman Lisp, because the character "=A5\" is a5 5c, while 5c is backslash \ Those Chinese characters work in most moderen language like Java, C#, ... sailormoontw
asdf-install halts with SBCL 1.0(Win32 Binary)526 (12/7/2006 1:16:50 AM) comp.lang.lisp Hello: SBCL halts in the line "Installing C:\Steel Bank Common Lisp\1.0\CL-PPCRE.asdf-install-tmp in C:\Steel Bank Common Lisp\1.0\site\,C:\Steel Bank Common Lisp\1.0\site-systems\". The complete log as... sailormoontw
Combination of Numbers326 (9/6/2006 3:58:39 PM) comp.lang.lisp The code is not pretty(and/or efficient I think)because it's still a bit hard for me to write a pretty and efficient code. (defun list-combination (total-list collect-number) "Usage : (list-combination '(1 2 ... sailormoontw
File IO with unicode961 (9/1/2006 3:50:49 AM) comp.lang.lisp Hi : With the simple file text IO as follows: (with-open-file (stream "/some/file/name.txt") (format t "~a~%" (read-line stream))) I tried two text files, both are Traditional Chinese, one is Big-5(Codepag... sailormoontw