Beskrivning:
Discussion about LISP.
|
|
|
What does Emacs/SLIME support for refactoring?
|
| |
I'm writing a lot of CLOS code and with that the usual problem of renaming arrives so I'm interested what kind of functionality does Slime/Emacs has for refactoring common lisp code? Is there anything like Eclipse Refactoring functionality? thanks Slobodan
|
|
wxcl
|
| |
Hi. How to install wxcl ? I tried first installing asdf.lisp but I get an error <PACKAGE POSIX> has no external symbol with name "UID" Thanks.
|
|
how to achieve unique key with elephant
|
| |
Hi lispers! I have been tinkering with cl-elephant and I have a question: How do I create unique key with elephant objects? (defpclass book () ((isbn :initarg :isbn :accessor isbn :index t) (title :initarg :title :accessor title :index t) (author :initarg :author... mer »
|
|
Configuration file setup and pathname usage
|
| |
I am running CL on Windows and Mac and have a configuration file that I'd like to share between them. I want to do something like the following: [link] I am using cygwin on Windows so I want to use that as the user's home-dir. 1. Is this the correct way to make use of CL pathnames? I switched from... mer »
|
|
(compile 'foo) when foo is a macro?
|
| |
If FOO is already a macro, what should (compile 'foo ...) do? The CLHS says the macro function should be updated, but it's not clear to me what it should be updated to. Apparently Lispworks and SBCL update the macro function with the new definition. ACL, CCL, and Clisp replace the macro function with a function. ACL and Clisp do this silently but CCL... mer »
|
|
group without recursion
|
| |
Hi, I am trying to rewrite GROUP from On Lisp without recursion (just as an exercise). My first attempt is below, I am wondering if there is a nicer (more idiomatic, etc) way to do it. (defun group (list n) "Return elements of LIST as a list of lists in groups of N." (check-type n (integer 1)) (let (sublist... mer »
|
|
|