Future of lisp?15258 (8/16/2011 7:41:32 PM) comp.lang.lisp I report, you decide :P http://blog.8thlight.com/steven-degutis/2011/08/15/future-of-lisp.html Is Clojure really the most popular Lisp today? Common Lisp is C++ with more parantheses? Nu useless?... I have so... lakatos.isti(9)
trace in CLISP423 (10/4/2011 1:01:51 PM) comp.lang.lisp (trace some-recursive-function) produces a trace of calls all the way down and a trace of returns all the way up on Allegro CL, but in CLISP it just prints the top call and top return. I can't find anything in... cartercc(419)
Rainer Joswig and Hackers4040 (1/14/2012 7:17:46 PM) comp.lang.lisp there's something i don't understand about the fucking tech geekers. there's a lisp character, his name is Rainer Joswig. Over the years, we've had our exchange of spats. But to me, usually my mindset is that... xahlee(818)
Disassemble an individual method726 (1/14/2012 8:29:40 PM) comp.lang.lisp Is there a way to disassemble a specific method? I'm able to lookup the method itself, e.g.: (find-method #'index-lookup '() (list (find-class 'file-index) t)) but attempting to DISASSEMBLE this results in... davidb9298(4)
Per-thread special variables?2322 (1/19/2012 10:00:31 AM) comp.lang.lisp Hi list! By default, special variable is bound to its initial value in all threads. So, changing it with "setf" affects all threads where it was not bound with let. Is there a way to make a special variable w... budden-lisp(279)
Compile file with specific optimization822 (2/6/2012 2:29:10 PM) comp.lang.lisp I would like to compile file with specific optimization settings. More precisely, I would like to write a function 'compile-file-with-optimization'. My first attempt is (defun compile-file-with-optimization(f... hebisch(114)
Function Warnings3836 (4/13/2012 11:05:35 AM) comp.lang.lisp This program runs fine. I get style warnings. I know that you have to "defvar" a variable and then do "setf" to assign a value but what about function warning in my case, what to do about them ? (SBCL 1.0.55... sunrise2(598)
The purpose of Lisp syntax to model AST1333 (7/4/2012 6:38:06 AM) comp.lang.lisp Lisp syntax represents AST as far as I know, but in high level format to al=
low human to easily read and modify, at the same time make it easy for the =
machine to process the source code as well.
For thi... solidius4747(12)