documentation strings of lexically scoped functions720 (2/15/2012 4:46:57 PM) comp.lang.lisp Out of curiosity : In common lisp, functions created by 'flet' or 'labels' are allowed to have doc strings, as any other function. But they are not accessible from outside. Are those doc strings useful ? Are th... kodifik
which is better525 (12/23/2011 5:08:49 PM) comp.lang.lisp Which is better, (nth-value 1 (truncate x)) or (rem x 1) from the point of view of efficiency? My bet would be rem, but I would like to benefit from your experience. ... kodifik
possible (re)definition of form226 (9/13/2011 1:31:08 PM) comp.lang.lisp Could a form be defined by the following phrase? A form is either an atom or a list whose car is an symbol. ... kodifik
ANNOUNCE with-max-time with CLISP preliminary support130 (10/5/2009 5:22:59 PM) comp.lang.lisp Find it at: http://www.eurogaran.com/downloads/lisp/limitools/limitime.lsp Also included, under the "debs" dir, the corresponding debian-lenny packages for CLISP with multithreading, which may be interesting b... kodifik
ANNOUNCE old CLIM doc rescued1327 (8/7/2009 9:29:50 PM) comp.lang.lisp CLIM 2 document accompanying Symbolics Genera doc set. Rescued in pdf format for you to enjoy. http://www.eurogaran.com/downloads/doc/ To the Google books people: I did it!!! I have been more stubborn!!! ... kodifik
about pushnew3538 (2/3/2009 6:22:04 PM) comp.lang.lisp Let's create an empty list, for instance with (setq list ()) Now suppose I want to push a number into it only if said number is not 3. The following code seems reasonable: (pushnew number list :test #'(lambda (... kodifik
a lisper christmas present435 (12/24/2008 4:28:12 PM) comp.lang.lisp The only lispy desktop theme to date AFAIK. For those of you who use WindowMaker, with best wishes. http://eurogaran.com/downloads/lisp/LispMachine-themed.tar.gz ... kodifik
Why not a setf-able NIL ?5836 (10/1/2008 9:35:15 AM) comp.lang.lisp As we all know, in Common Lisp logical falsehood is represented by the non-symbolic atom NIL, which in turn happens to be also the empty list '(). Everything not nil is true, so in lisp 0 is true. If -however- ... kodifik
Using ccl/MS-Windows from emacs/cygwin with slime/swank.332 (3/2/2012 1:03:46 PM) comp.lang.lisp ccl on MS-Windows uses MS-Windows physical pathnames. emacs on cygwin has some flexibility, but mostly uses POSIX paths. Happily, slime provides a mechanism to customize it's boot process. When launched fr... pjb(7667)
S-expression comments2527 (4/4/2012 7:25:03 PM) comp.lang.lisp I would like to create a reader macro like the scheme #; to comment out a form. So far my function does only read the form, but not ignore it as I would. (set-dispatch-macro-character #\# #\; (lambda (str... schatzer.johann(29)
"Micro-Lisp" a lisp for the C64627 (4/12/2012 12:33:27 AM) comp.lang.lisp "Micro-Lisp Version 2.5 -- A Lisp interpreter for the C64!" _The Transactor_ Volume 8, Issue 06 (May 1988) Page 38 http://csbruce.com/cbm/transactor/v8/i6/ Archive of disk images: http://csbruce.com/cbm/t... wobh(18)
name for higher order function1528 (4/13/2012 1:54:10 PM) comp.lang.lisp How would you name (defun unnamed (operator &rest functions) "Return a closure that applies OPERATOR on the value returned by calling functions on its single argument." (lambda (x) (apply operator (map... tkpapp(981)
forth vs common lisp8153 (4/15/2012 12:05:41 AM) comp.lang.forth cl claims to be the most powerful programming language in the world!!! can forth outdo it? www.paulgraham.com ... gavcomedy(1610)
tail call with memory1822 (4/25/2012 9:22:02 AM) comp.lang.lisp Hello, I do not understand how I managed to build in some limited memory into the following function. (let ((lst)) (defun search-all-1 (a b &key (test #'equal)) (labels ((f (a b acc) (let ((x ... feldspat(10)
re: ELSE in LOOP428 (5/23/2012 8:12:00 AM) comp.lang.lisp Michael Kappert wrote: > As a matter of style, i suggest using IF instead of WHEN > if (err, when :-)) the ELSE branch is present. > > So, your code would appear as > > (loop for i from 0 to 10 > if ... w_a_x_man(2782)