active questions tagged common-lisp - Stack Overflowmost recent 30 from stackoverflow.com2009-12-14T23:18:08Zhttp://stackoverflow.com/feeds/tag/common-lisphttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1886212/where-do-these-namings-in-common-lisp-come-from0Where do these namings in common lisp come from?yehnan2009-12-11T06:36:51Z2009-12-11T14:52:42Z
<p>Hi, in common lisp, the names <em>labels</em> and <em>flet</em> are somewhat peculiar to me.</p>
<p><em>flet</em> could be described as a sort of <em>let</em> for <em>f</em>unctions. So it named as such. What about <em>labels</em>?</p>
<p>And where does the "f" of <em>getf</em>, <em>setf</em>, <em>remf</em> come from?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1874418/how-to-make-a-list-of-arrays-not-their-symbols-in-lisp1How to make a list of arrays, not their symbols, in Lisp?culebrón2009-12-09T14:55:10Z2009-12-10T11:48:11Z
<p>I'm trying to make a function to get a delta between arrays, but right now just want to make a subset: get Nth element.</p>
<pre><code> (defvar p1 #(1 2))
(defvar p2 #(3 4))
(mapcar '(lambda (x) (aref x 0)) '(p1 p2))
debugger invoked on a TYPE-ERROR in ...
The value P1 is not of type ARRAY.
</code></pre>
<p>The same error if I make it with make-array.</p>
<p>How do I apply the lambda function, or how to apply <code>(aref x 0)</code>, or <code>(aref x N)</code> in general case?</p>
<p>In the end I want to make a function that returns a delta: p2 - p1.</p>
http://stackoverflow.com/questions/1865820/sbcl-standard-library-documentation2SBCL standard library documentation?culebrón2009-12-08T09:36:54Z2009-12-08T14:01:13Z
<p>I want to learn and use <a href="http://www.sbcl.org/" rel="nofollow">SBCL</a> because of its ease of learning and speed. (I've been playing with Lisp 3 years ago, and now am refreshing it.) But how can I learn what's included in the standard library, so that I don't re-implement things?</p>
<p>After Python this is like a nightmare: the SBCL website has a <a href="http://www.sbcl.org/manual/" rel="nofollow">manual</a> that covers the <strong>software</strong> only, not a word on the standard library. <em>(For comparison, Gnu Common Lisp's website has only sources and binaries.)</em></p>
http://stackoverflow.com/questions/1838679/returning-a-lambda-function-in-clisp-then-evaluating-it2returning a lambda function in clisp, then evaluating itPaul Nathan2009-12-03T09:16:57Z2009-12-07T10:50:39Z
<p>Suppose I have this wonderful function foo</p>
<pre><code>[92]> (defun foo () (lambda() 42))
FOO
[93]> (foo)
#<FUNCTION :LAMBDA NIL 42>
[94]>
</code></pre>
<p>Now, suppose I want to actually <em>use</em> foo and return 42.</p>
<p>How do I do that? I've been scrounging around google and I can't seem to come up with the correct syntax.</p>
http://stackoverflow.com/questions/1848029/why-not-port-linux-kernel-to-common-lisp6Why not port Linux kernel to Common Lisp?rplevy2009-12-04T16:18:49Z2009-12-06T09:37:35Z
<p>Conventional wisdom states that OS kernels must be written in C in order to achieve the necessary levels of performance. This has been the justification for not using more expressive high level languages.</p>
<p>However, for a few years now implementations of Common Lisp such as SBCL have proven to be just as performant as C. What then are the arguments against redoing the kernel in a powerfully expressive language, namely Common Lisp?</p>
<p>I don't think anyone (at least anyone who knows what they are talking about) could argue against the fact that the benefits in transparency and readability would be tremendous, not to mention all the things that can't be done in C that can be done in Lisp, but there may be implementation details that would make this a bad idea.</p>
http://stackoverflow.com/questions/1852891/association-in-common-lisp4Association in Common Lispmnv2009-12-05T17:50:28Z2009-12-06T07:59:42Z
<p>There's a structure of the following format:</p>
<pre><code> (setq dist '(((1 1) 1)
((0 2) 3)
((1 2) 1)
((2 3) 3)
((3 5) 4)))
</code></pre>
<p>Is there any function which, if I call </p>
<pre><code>(myf '(0 2))
</code></pre>
<p>could give me </p>
<pre><code>3
</code></pre>
<p>or</p>
<pre><code>((0 2) 3)
</code></pre>
<p>Something like a reverse <code>assoc</code></p>
http://stackoverflow.com/questions/833314/compiling-binaries-with-clozure-common-lisp6Compiling Binaries with Clozure Common LispHero Doug2009-05-07T07:29:48Z2009-12-03T15:41:31Z
<p>Given a simple program such as the following, how would you: </p>
<ol>
<li><p>compile it as a seperate image file to be loaded by the implementation, and what command line arguments would you use to load it? </p></li>
<li><p>Compile it as a standalone binary that can be loaded and run as is.</p>
<p><em>Note: I tried adding ":prepend-kernel t" when saving the application only to have the follow error thrown.</em></p>
<pre><code>Error: value NIL is not of the
expected type REAL. While executing:
CCL::<-2, in process Initial(0).
</code></pre></li>
<li><p>How would you supress the welcome message?</p>
<p><strong>The Program</strong></p>
<pre><code>(defun main ()
(format t "This is the program.")0)
</code></pre></li>
</ol>
<p><strong>Edit</strong></p>
<p>Hate to answer part of my own question, but I found it none the less.</p>
<p>After the function has been loaded type the following to compile it:</p>
<pre><code>(ccl:save-application "app")
</code></pre>
<p>This creates an image file. To load it by passing it to the implementation type (note: the 'ccl' binary is in my system path);</p>
<pre><code>ccl -I app
</code></pre>
<p>To run a top level function pass it as a parameter</p>
<pre><code>ccl -I app --eval (main)
</code></pre>
http://stackoverflow.com/questions/1822382/a-lisp-function-refinement4A lisp function refinementRobert2009-11-30T21:03:41Z2009-12-02T15:59:52Z
<p>Dear all:</p>
<p>Hi, I've done the Graham Common Lisp Chapter 5 Exercise 5, which requires a function that takes an object X and a vector V, and returns a list of all the objects that immediately precede X in V.</p>
<p>It works like:</p>
<pre><code>> (preceders #\a "abracadabra")
(#\c #\d #r)
</code></pre>
<p>I have done the recursive version:</p>
<pre><code>(defun preceders (obj vec &optional (result nil) &key (startt 0))
(let ((l (length vec)))
(cond ((null (position obj vec :start startt :end l)) result)
((= (position obj vec :start startt :end l) 0)
(preceders obj vec result
:startt (1+ (position obj vec :start startt :end l))))
((> (position obj vec :start startt :end l) 0)
(cons (elt vec (1- (position obj vec :start startt :end l)))
(preceders obj vec result
:startt (1+ (position obj vec
:start startt
:end l))))))))
</code></pre>
<p>It works correctly, but my teachers gives me the following critique:</p>
<p>"This calls length repeatedly. Not so bad with vectors, but still unnecessary. More efficient and more flexible (for the user) code is to define this like other sequence processing functions. Use :start and :end keyword parameters, the way the other sequence functions do, with the same default initial values. length should need to be called at most once."</p>
<p>I am consulting the Common Lisp textbook and google, but there seem to be of little help on this bit: I don't know what he means by "using :start and :end keyword parameters", and I have no clue of how to "call length just once". I would be grateful if you guys could give me some idea how on to refine my code to meet the requirement that my teacher posted. Thanks a lot!</p>
<p>UPDATE:</p>
<p>Hi guys, now I have come up with the following code:</p>
<pre><code>(defun preceders (obj vec
&optional (result nil)
&key (start 0) (end (length vec)) (test #'eql))
(let ((pos (position obj vec :start start :end end :test test)))
(cond ((null pos) result)
((zerop pos) (preceders obj vec result
:start (1+ pos) :end end :test test))
(t (preceders obj vec (cons (elt vec (1- pos)) result)
:start (1+ pos) :end end :test test)))))
</code></pre>
<p>I get this critique:</p>
<p>"When you have a complex recursive call that is repeated identically in more than one branch, it's often simpler to do the call <em>first</em>, save it in a local variable, and then use the variable in a much simpler IF or COND."</p>
<p>Also,for my iterative version of the function:</p>
<pre><code>(defun preceders (obj vec)
(do ((i 0 (1+ i))
(r nil (if (and (eql (aref vec i) obj)
(> i 0))
(cons (aref vec (1- i)) r)
r)))
((eql i (length vec)) (reverse r))))
</code></pre>
<p>I get the critique</p>
<p>"Start the DO at a better point and remove the repeated > 0 test"</p>
<p>Could you please share your ideas with me, I think this is my final step toward success!
Many thanks!</p>
http://stackoverflow.com/questions/1751911/lambda-gtk-negative-pointer2lambda-gtk negative pointerx13n2009-11-17T21:26:01Z2009-11-18T05:33:35Z
<p>I was trying to write my own put-pixel on (Gdk) pixbuf in Lisp. When I finally realized how I can operate on C pointers in CL, new obstacle came along - (gdk:pixbuf-get-pixels pb) returns me negative number. My question is: can I convert it somehow to a valid pointer? My attempts to use cffi:convert-from-foreign and cffi:translate-from-foreign (what's the difference between them anyway?) failed.</p>
<p>Below is my actual (not working) code:</p>
<pre><code>(defun put-pixel (pixbuf x y r g b)
(let ((p (+ (gdk:pixbuf-get-pixels pixbuf) (* x (gdk:pixbuf-get-n-channels pixbuf)) (* y (gdk:pixbuf-get-rowstride pixbuf)))))
(setf (cffi:mem-aref p :unsigned-char 0) r)
(setf (cffi:mem-aref p :unsigned-char 1) g)
(setf (cffi:mem-aref p :unsigned-char 2) b)))
</code></pre>
http://stackoverflow.com/questions/1743248/pointers-in-lisp1Pointers in Lisp?x13n2009-11-16T16:25:00Z2009-11-16T19:24:56Z
<p>I've started learning Lisp recently and wanted to write a program which uses gtk interface. I've installed lambda-gtk bindings (on CMUCL). I want to have putpixel/getpixel ability on a pixbuf. But I found that I'm unable to direct access memory. (or just don't know how)</p>
<p>Function (gdk:pixbuf-get-pixels pixbuf) returns me a number - memory addr, I guess. In C++ I can easily get to the pixel I need. Is there any way to write my own putpixel in Lisp?</p>
http://stackoverflow.com/questions/1739486/is-there-a-common-lisp-package-naming-convention8Is there a common lisp package naming convention?Russell2009-11-16T00:35:42Z2009-11-16T14:06:19Z
<p>I have created some of my own user packages and have run into a name clash.</p>
<p>In Java, the naming convention is to use your domain name in the package name:
e.g. import com.example.somepackage;.</p>
<p>Are there any widely used package naming conventions for common lisp packages?</p>
<p>Regards,</p>
<p>Russell</p>
http://stackoverflow.com/questions/1714223/translating-the-q-and-p-function-from-the-little-schemer-into-common-lisp2Translating the Q and P function from The Little Schemer into Common Lisp?J G2009-11-11T10:05:59Z2009-11-14T06:43:07Z
<p>In Chapter 9 of the Little Schemer, the Author presents the following two functions</p>
<pre><code>(define Q
(lambda (str n)
(cond
((zero? (remainder (first$ str ) n))
(Q (second$ str ) n))
(t (build (first$ str )
(lambda ( )
(Q (second$ str ) n)))))))
(define P
(lambda (str)
(build (first$ str)(lambda () (P (Q str (first$ str)))))))
</code></pre>
<p>and proposes that they are evaluated with the following execution:</p>
<pre><code>(frontier (P (second$ (second$ int))) 10)
</code></pre>
<p>How would you write the P and Q functions in Common Lisp? </p>
<p>(I have translated the Y-Combinator myself - but I'm finding this one challenging)</p>
<p>--Helper Functions--</p>
<pre><code>(define frontier
(lambda (str n)
(cond
((zero? n) (quote ()))
(t (cons (first$ str) (frontier (second$ str) (sub1 n)))))))
(define str-maker
(lambda (next n)
(build n (lambda () (str-maker next (next n))))))
(define int (str-maker add1 0))
(define second$
(lambda (str)
((second str))))
(define first$ first)
(define build
(lambda (a1 a2)
(cond
(t (cons a1
(cons a2 (quote ())))))))))
(define first
(lambda (p)
(cond
(t (car p)))))
(define second
(lambda (p)
(cond
(t (car (cdr p))))))
(define add1
(lambda (n)
(+ 1 n)))
(define remainder
(lambda (n m)
(cond
(t (- n (* m (/ n m ))))))
</code></pre>
<p>(Disclaimer - This Is Not A Homework Question - it is for my understanding and learning)</p>
http://stackoverflow.com/questions/1716456/lisp-as-a-scripting-language-in-a-c-app10Lisp as a Scripting Language in a C++ app...Orm2009-11-11T16:38:56Z2009-11-14T02:53:31Z
<p>Hey, I've been looking at the possibility of adding a scripting language into my framework and I heard about Lisp and thought I would give it a go. Is there a VM for Lisp like Lua and Python or am I in the wrong mindset. I found CLISP here, <a href="http://clisp.cons.org/" rel="nofollow">http://clisp.cons.org/</a>, but am not sure if this is what I am looking for.</p>
<p>Can anyone point me in the right direction?</p>
http://stackoverflow.com/questions/1719551/getting-the-first-n-elements-of-a-list-in-common-lisp5Getting the first n elements of a list in Common Lisp?esperantist2009-11-12T02:39:33Z2009-11-12T17:49:33Z
<p>The title says it all, really. How would I get the first <code>n</code> elements of a list?</p>
<pre><code>CL-USER> (equal (some-function 2 '(1 20 300))
'(1 20))
T
</code></pre>
<p>I am absolutely certain this is elementary, but help a brother newb out.</p>
<p>Kisses and hugs.</p>
http://stackoverflow.com/questions/1318729/what-lisp-is-better-at-parsing13What Lisp is better at parsing?Jason Baker2009-08-23T14:42:35Z2009-11-11T20:37:12Z
<p>I'd like to implement a Lisp interpreter in a Lisp dialect mainly as a learning exercise. The one thing I'm thrown off by is just how many choices there are in this area. Primarily, I'm a bit more interested in learning about some of the Lisps that have been around a while (like Scheme or Common Lisp). I don't want to use Clojure to do this for the sheer fact that I've already used it. :-)</p>
<p>So is one of the flavors any better than the others at parsing? And do you think it's a good idea to say implement Scheme in Common Lisp (or vice versa)? Or will there be enough differences between the two to throw me off?</p>
<p>And if it makes any difference, I'd like something that's cross-platform. I have a Windows PC, a Mac, and a Linux box, and I could end up writing this on any of them.</p>
http://stackoverflow.com/questions/1692656/common-lisp-cons-inside-loop1Common Lisp: cons inside loopTrueStar2009-11-07T10:32:13Z2009-11-07T15:37:04Z
<p>I wonder why in the following code, <code>d</code> is not being <code>cons</code>ed into <code>x</code>.
Any hints are much appreciated.</p>
<pre><code>(defun it (x)
(setq f '(a b c))
(dolist (d f)
(cons d x))
(print x))
</code></pre>
<p>Thank you!</p>
http://stackoverflow.com/questions/1521509/common-lisp-integer-to-hex-conversion2Common lisp integer to hex conversionMichael Minerva2009-10-05T18:02:20Z2009-11-07T14:42:13Z
<p>Is there a similar function to (parse-integer "ff" :radix 16) that will take me back the other way? If I have the int 255 how do I convert it to the string ff? </p>
http://stackoverflow.com/questions/1683107/when-is-an-initform-used2When is an initform used?Shamster2009-11-05T19:53:26Z2009-11-07T09:18:44Z
<p>I'm forming a class for some work on molecular dynamics as follows:</p>
<pre><code>(defclass %atom (particle)
((name :initarg :name :initform (error "Every atom in the system must have a name!"))
(mass :accessor mass :initarg :mass :initform (getmass name))
(charge :accessor charge :initarg :charge :initform (getcharge name))))
</code></pre>
<p>Initially I thought that I could somehow refer to other slots within the class definition with an initform i.e. (getmass name) - but that turns out to be untrue (or does it?!?). Instead, I'm told that initialize-instance would be the place to put all that initialization stuff... fair enough.</p>
<p>The question I have, then, is when is :initform used? What's the idiomatic preference? I've seen it used as above for generating (error "...") code, and also to initialize default arguments when an :initarg is not provided. But both of those could easily fit into initialize-instance and may make more sense there. Is there a particular way :initform is generally used?</p>
http://stackoverflow.com/questions/1623259/unfold-for-common-lisp5"unfold" for common lisp?nullpointer2009-10-26T05:42:11Z2009-11-05T20:49:06Z
<p>I learned quite a bit of scheme from SICP but am more interested in common lisp now. I know common lisp's <code>fold</code> is <code>reduce</code>, with special arguments for left or right folding, but what is the equivalent of <code>unfold</code>? Googling has not helped much. In fact I get the impression there is no unfold???</p>
http://stackoverflow.com/questions/1675322/lisp-file-pointers-in-classes2lisp file pointers in classesShamster2009-11-04T17:17:47Z2009-11-04T19:57:45Z
<p>I'm running up against a problem in understanding the CLOS way of handling file access within a class. In c++ I would be able to do this:</p>
<pre><code>class Foo {
Foo (string filename); // opens the file (my_file) requested by the filename
~Foo (); // close the file
FILE * my_file; // a persistent file-handle
DataStruct my_data; // some data
void ParseData (); // will perform some function on the file and populate my_data
DataStruct * GetData () { return &my_data; } // accessor to the data
};
</code></pre>
<p>What I'd like to point out is that PraseData() will be called multiple times, and each time a new block of data will be parsed from the file and my_data will be altered.</p>
<p>I'm trying to perform the same trick in CLOS - create all the generic methods to parse the data, load the file, read headers, etc. as well as the class definition which I have as:</p>
<pre><code>(defclass data-file ()
((filename :initarg :filename :accessor filename)
(file :accessor file)
(frame :accessor frame)))
</code></pre>
<p>In the "constructor" (i.e. initialize-instance) I open the file just as my c++ idiom. Then I have access to the data and I can parse the data as before. However, I'm told that using a "destructor" or (finalize) method to close the file is not idiomatic CLOS for handling this type of situation where I need the file to be around so I can access it outside of my data-file methods.</p>
<p>I'm going to define a function that loads a data-file, and then performs a series of analyses with its data, and then hopefully close it. What's a way to go about doing this? (I'm assuming a macro or some type of closure would work in here, but I'm not familiar enough with the lisp way to decide what is needed or how to implement it).</p>
http://stackoverflow.com/questions/1659413/multiple-constructors-in-common-lisp1Multiple constructors in common lispShamster2009-11-02T04:24:58Z2009-11-02T13:04:32Z
<p>Can classes have multiple constructors and/or copy constructors in common-lisp? That is - in order to create a class for a new vector - "vecr" to represent 3-d vectors of real numbers, I'd like to define the new class that can be initialized in multiple ways:</p>
<pre><code>(vecr 1.2) ==> #(1.2 1.2 1.2)
</code></pre>
<p>or</p>
<pre><code>(vecr 1.2 1.4 3.2) ==> #(1.2 4.3 2.5)
</code></pre>
<p>or</p>
<pre><code>(vecr) ==> #(0.0 0.0 0.0)
</code></pre>
http://stackoverflow.com/questions/232486/best-common-lisp-ide8Best Common Lisp IDEBrendan Foote2008-10-24T04:31:01Z2009-10-30T15:12:44Z
<p>I've used Slime within Emacs as my primary development environment for Common Lisp (or Aquamacs on OS X), but are there other compelling choices out there? I've heard about Lispworks, but is that [or something else] worth looking at? Or does anyone have tips to getting the most out of Emacs (e.g., hooking it up to the hyperspec for easy reference)?</p>
<p>Update: Section 7 of Pascal Costanza's <a href="http://p-cos.net/lisp/guide.html" rel="nofollow">Highly Opinionated Guide to Lisp</a> give one perspective. But to me, <a href="http://common-lisp.net/project/slime/" rel="nofollow">SLIME</a> really seems to be <a href="http://www.cliki.net/Editing%20Lisp%20Code%20with%20Emacs" rel="nofollow">where it's at</a>.</p>
http://stackoverflow.com/questions/1626567/common-lisp-beginners-trouble-with-funcall1Common Lisp: Beginner's trouble with funcallChad2009-10-26T18:40:03Z2009-10-28T14:14:21Z
<p>I'm trying to pass a function as an argument and call that function within another function.</p>
<p>A piece of my code looks like this:</p>
<pre><code>(defun getmove(strategy player board printflag)
(setq move (funcall strategy player board))
(if printflag
(printboard board))
</code></pre>
<p>strategy is passed as a symbol represented in a two dimensional list as something such as 'randomstrategy</p>
<p>I keep getting the error:
"FUNCALL: 'RANDOMSTRATEGY is not a function name; try using a symbol instead...</p>
<p>When I replace strategy with 'randomstrategy it works fine.
I can also call randomstrategy independently.
What is the problem?</p>
http://stackoverflow.com/questions/1403717/how-do-i-iterate-through-a-directory-in-common-lisp8How do I iterate through a directory in Common Lisp?Justicle2009-09-10T06:50:47Z2009-10-28T13:25:19Z
<p>I'm using OpenMCL on Darwin, and I'd like to do something like:</p>
<pre><code>(loop for f in (directory "somedir")
collect (some-per-file-processing f))
</code></pre>
<p>But I can't get <code>directory</code> to return anything other than <code>NIL</code>, and I can't seem to find any good explanation online (other than "its different for each system").</p>
<p>Any pointers?</p>
http://stackoverflow.com/questions/110390/whats-a-good-common-lisp-implementation-for-windows13What's a good Common Lisp implementation for Windows?TraumaPony2008-09-21T06:25:02Z2009-10-28T13:10:22Z
<p>What's your favourite?</p>
<p>See also <a href="http://stackoverflow.com/questions/110433/are-there-any-common-lisp-implementations-for-net">this related question.</a></p>
http://stackoverflow.com/questions/1621697/getting-stack-overflow-with-gnu-clisp-windows1Getting Stack overflow with GNU CLisp (Windows)Simon2009-10-25T18:50:12Z2009-10-25T21:19:50Z
<p>I'm getting "Program stack overflow RESET" message while running my program. So I set added a counter to see how many times I'm recursively calling the main function in my program. Turns out that it is around 30,000 times and the data I'm stacking are lists of length around 10 elements, which I think are not so many. My question is whether this amount of recursive call and memory usage are common or not, or is it more likely that I'm doing something wrong? I checked the resource manager of vista and found the memory only grew for like 1MB for lisp.exe process. And how do I adjust the stack overflow limit of CLisp?</p>
http://stackoverflow.com/questions/450538/how-do-i-get-a-common-lisp-gui-in-windows5How do I get a common-lisp GUI in Windows?Andrew Larned2009-01-16T14:23:57Z2009-10-25T17:46:14Z
<p>I'm using Emacs, with CLISP and Slime, and want to be able to draw pictures on the screen. I'm specifically thinking about drawing graphs, but anything that would let me draw basic shapes and manipulate them would be able to get me started.</p>
http://stackoverflow.com/questions/1524912/clozure-common-lisp-tcp-socket-programming-sending-a-reply4Clozure Common Lisp - TCP Socket Programming - Sending a ReplyHero Doug2009-10-06T10:58:24Z2009-10-08T09:12:29Z
<p>I have a very small program which opens a socket and accepts a connection. It then grabs the remote IP and port.</p>
<p>I'd like to send a text message to the remote computer (telnet) and close the connection.</p>
<p>I can't determine which function is for sending a message to the telnet client.</p>
<p>The <a href="http://ccl.clozure.com/manual/chapter7.2.html#Sockets-Dictionary" rel="nofollow">Clozure manual</a> lists a function called "send to" but it says it's for UDP sockets and I'm working with TCP sockets.</p>
<p>I hope someone can tell me what the proper function is, or, if "send-to" is the proper function, how to use it properly.</p>
<p>Thanks</p>
<pre><code>(setq my-socket (ccl:make-socket :connect :passive :format :text
:local-port 20000 :reuse-address t))
(setq connection (ccl:accept-connection my-socket))
(setq remote-host (ccl:remote-host connection))
(setq remote-port (ccl:remote-port connection))
</code></pre>
http://stackoverflow.com/questions/784246/changing-the-package-from-the-repl-in-slime-is-it-broken0Changing the package from the REPL in SLIME - is it broken?Scrapdog2009-04-24T01:57:18Z2009-10-08T09:00:02Z
<p>I just recently started experiment with SLIME, and found a problem that makes me unsure whether it is something I am doing wrong or if the current snapshot of SLIME is broken.</p>
<p>The problem: trying to change the package (using , !p) always throws an error, regardless of which backend is used.</p>
<p>The error from SBCL looks like this:</p>
<blockquote>
<p>The value #("FOO" 0 3 (SWANK-IO-PACKAGE::FACE NIL)) is not of type (OR (VECTOR CHARACTER) (VECTOR NIL) BASE-STRING SYMBOL CHARACTER PACKAGE).<br />
[Condition of type TYPE-ERROR]</p>
</blockquote>
<p>CLISP and CCL throw the same error, though worded slightly differently.</p>
<p>I am running on Windows, but the same thing happens when I try it on Linux. I suspect that either there is something I am neglecting to do in my .emacs file, or there is a glitch in the current version of SLIME. I just started using SLIME yesterday, so I have no past experiences to compare it to.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1511981/how-to-examine-list-of-defined-functions-from-common-lisp-repl-prompt5How to examine list of defined functions from Common Lisp REPL promptBalaji Sowmyanarayanan2009-10-02T21:56:37Z2009-10-05T13:51:39Z
<p>I'm a newbie to lisp. I'm evaluating/testing a browser based application presumably written in common lisp. Apart from the browser based interface, the software provides a 'Listener' window with a 'CL-User >' REPL prompt. </p>
<p>I wish to examine the list of functions, symbols, and packages from the REPL prompt. So that I could co-relate the frontend functionality with what is exposed via the REPL. </p>
<p>Google search is futile for me as it leads to tutorials and resources that teaches lisp step-by-step. </p>
<p>Any hints, pointers on examining the state via REPL will be much appreciated.</p>