Common Lisp, or ANSI Common Lisp, is a standardized version of the Lisp programming language intended for production-strength power and libraries.
1
vote
1answer
32 views
the pathname-directory behave strange
I use SBCL 1.1.4, and found pathname-directory behave strange:
Say that there is a pathname contains "..", the following examples are trival. SBCL converts every ".." to ":UP"
(pathname-directory ...
0
votes
2answers
24 views
sbcl error on export symbols
I use the "pregexp" package for regular expression operations in SBCL.
Because the functions is not defined in a package, I have the codes below to
wrap it:
--------------- in the file "foo.lisp" ...
0
votes
2answers
30 views
Achieve (format nil …) with princ
Here's the behavior of a few format and princ calls:
(format nil "a")
"a"
CL-USER>
(format t "a")
a
NIL
CL-USER>
(princ "a" nil)
a
"a"
CL-USER>
(princ "a" t)
a
"a"
CL-USER>
I would ...
0
votes
0answers
17 views
NSMatrix calling NSFormCell's methods on an NSTextFieldCell prototype
I created an NSMatrix with an NSTextFieldCell as its prototype. But when the view is added to a window and drawn, I get this error:
-[NSTextFieldCell setTitleWidth:]: unrecognized selector sent to ...
2
votes
3answers
66 views
Lists and Member Implementation in Common Lisp
I'm just starting to learn Common Lisp and the text I'm reading uses an example with the member function.
I'm unsure of the distinction between these two blocks of code:
(if (member nil '(1 nil 2 ...
3
votes
2answers
79 views
Circular list in Common Lisp
I am working using a visual programming environment for musical composition based on CL . I am trying to create a function that when given say 3 elements (1 2 3) will return 1, 2, 3, 1, 2, 3 etc., one ...
2
votes
2answers
45 views
How to translate (make-pathname :directory '(:absolute :home “directoryiwant”) into absolute path
I want to be able to translate a certain directory in my homedirectory on any OS to the actual absolute path on that OS e.g. (make-pathname :directory '(:absolute :home "directoryiwant") should be ...
1
vote
2answers
45 views
Using iterate after installing with Quicklisp
When I load the "iterate" package using Quicklisp ( (ql:quickload "iterate") ), it seems to load fine but none of the functions really work. When I enter (iterate:iter (for i from 0 to 10) (collect ...
4
votes
4answers
116 views
Why does not exist a primitive `call-with-current-continuations` in Common Lisp?
Lately I've been investigating the differences between Scheme and Common Lisp regarding the approach that these two languages have towards continuations.
I've noticed that the Common Lisp approach ...
1
vote
0answers
77 views
Scraping HTML in lisp
My question is related to another question found here Scraping an HTML table in Common Lisp?
I am trying to extract data from a webpage in common lisp. I am currently using drakma to send the http ...
3
votes
2answers
71 views
Common Lisp: Why does my tail-recursive function cause a stack overflow?
I have problem in understanding the performance of a Common Lisp function (I am still a novice). I have two versions of this function, which simply computes the sum of all integers up to a given n.
...
1
vote
0answers
24 views
I'm Getting an Error Message when Trying to Install CFFI-LIBFFI with (ql:quickload “cffi-libffi”) in EMACS/SLIME/SBCL
This is the error message:
External process exited with code 1.
Command was: "c:/msys/1.0/bin/gcc.exe" "-m32" "-I/Program Files (x86)/Steel Bank Common Lisp/1.1.4/site/cffi/" "-o" "D:\Program Files ...
3
votes
4answers
78 views
Expand a macro form completely
I'd like to learn the internals of Lisp, so I want to see how everything is implemented.
For example,
(macroexpand '(loop for i upto 10 collect i))
gives me (in SBCL)
(BLOCK NIL
(LET ((I 0))
...
2
votes
4answers
111 views
Finding right triangles in Lisp
I was skimming "Learn You a Haskell" and found, at the very bottom of this page, a way of finding a triple (a, b, c) representing a right triangle with a specified perimeter that I found very elegant ...
1
vote
0answers
56 views
Where can I find a Book\Tutorial that will teach me what I need to know to install any Common Lisp Library I choose?
If we can build a knowledge repository here for Lisp Library Install Help...It could help out a lot of Lisp Noobs and Advanced Noobs(Me)...I'll keep posting back as I learn so My experience can help ...
2
votes
0answers
35 views
Has anyone else gotten Lisp's CL-OpenCV Wrapper for C++'s OPENCV to work on Windows 8? I'm trying here are my steps
Maybe this could be a place where like minds can come together and get this working...
I installed OpenCV using the "Installation by Using the Pre-built Libraries" section at the top of this ...
0
votes
1answer
23 views
When I try to instal Common Lisps “ CL-Blapack” in Emacs\Slime\SBCL I get Error Message - How can I get past it?
I'm using Windows 8 and Emacs\Slime\SBCL\Quicklisp. I think the fact finding steps tried in this question and the resulting solution, which I will post can aid In others also learning to master ...
1
vote
1answer
55 views
How can I unserialize a s-exp then seralize it and avoid upper-casing?
I am supposed to read a complex s-expression tree, modify some nodes and save it somewhere.
It appears that in process the 'read function is "modifying" the input. For instance in a simple example: ...
0
votes
1answer
89 views
Common Lisp Loop Trouble
I have some trouble fully understanding CL's Loop macro.
This is my code for Project Euler Nr. 32:
(defun number-to-list (nr)
(map 'list #'digit-char-p (prin1-to-string nr)))
(defun nine-digits-p ...
3
votes
3answers
91 views
Use conditional places in setf
Lets say I have two variables and I want to set the variable with lower value to nil.
Is it possible to make it work this way?
(setf a1 5)
(setf a2 6)
(setf
(if (< a1 a2) a1 a2)
nil
)
0
votes
2answers
32 views
Error in REPL: Input a value to be used instead of (FDEFINITION 'X)
I'm trying to implement of Common Lisp function that computes the sum of squares. I have this:
[1]> (defun sum-of-squares (x)
(reduce +
(mapcar
...
1
vote
0answers
54 views
I'm getting an error message I get when attempting to Install CL-PNG in Emacs using Quicklisp
I hope the answers I get can help others in installing Lisp Packages in general. I installed libpng with the setup.exe (at this link: ...
2
votes
2answers
97 views
Lisp recursive macro problems
I'm writing a recursive Lisp macro taking a number n and evaluating the body n times (an exercise from ANSI Lisp). I've tried two ways of doing this -- having the macro call itself in its expansion, ...
3
votes
4answers
112 views
Common lisp push from function
I have the following common lisp functions: (aggregate line1 line2) and (queuer data result).
queuer should push into result either the values line1 and line2 if they have the 1st field different, or ...
-1
votes
0answers
74 views
In CL-OPENGL how do i move the camera(glu:look-at) with a key-press
My code is below....
Im trying to move the camera i\e change the glu:look-at parameters with a key-press.
I wrote a 2 functions move-right that increments the variable eye-x in my code and move-left ...
5
votes
6answers
176 views
GUI Programming in LISP?
I did a fair amount of Lisp programming a few years back, but it was all really console-based things. I did use cells-gtk(2), but now that's really not maintained anymore and obviously we're Gtk3 now.
...
0
votes
2answers
56 views
Common Lisp fuzzy-searchable function reference?
Is there a nice and friendly set of searchable documentation for ANSI Common Lisp anywhere? Preferably one that can be downloaded for use offline. I've Google but can only find static HTML pages that ...
2
votes
3answers
127 views
Backquote without parens
I am working through the excellent book Let Over Lambda, and I am trying to port the Common Lisp code for defunits over to Clojure.
The following generates a macro that is supposed to take
(defn ...
3
votes
3answers
90 views
Summing even fibonacci numbers in lisp
I've just started learning Lisp, and I'm working through some Project Euler problems. I'm stuck on the one where you sum the even Fibonacci numbers below a max number. The things I've tried follow. ...
-1
votes
0answers
45 views
Please explain what exactly is happining in the Flet portion of the (defmethod glut:keyboard) of the following Common Lisp CL-OpenGL code
Here is the DefMethod I'm refferring to below....the entire code this came from is below the DefMethod. Basically I'm trying to change this (defmethod glut:keyboard) so I can add.....basically I have ...
0
votes
2answers
60 views
TCP bug in Clozure common lisp: input/output collisions?
I am experiencing a strange bug with TCP in lisp (I am using Clozure common lisp).
I am using a TCP connection between my Clozure application and another application on the same computer for ...
1
vote
2answers
89 views
How do you call functions in a list of functions in Lisp?
I'm reading Practical Common Lisp, and I'm playing around with closures (chapter 6) in the REPL. I was trying the following code which I think makes a list of closures, but I can't figure out how to ...
1
vote
1answer
44 views
Lisp SYMBOL-PACKAGE-LOCKED-ERROR
I'm new to Lisp so when I wrote the function in SBCL
(defun subst (new old l)
(cond
((null l) '())
((eq old (car l)) (cons new (cdr l)))
((cons (car l) (subst new old (cdr l))))))
it ...
3
votes
1answer
68 views
Testing for non standard ascii character in common lisp
I need to test a string to see if it contains any characters that have codes above decimal 127 (extended ASCII codes) or are below 32. Is there any really nice way to do this or will I just have to ...
0
votes
0answers
28 views
In Common Lisp's CL-OpenAL I can play a wav file with the following function but how do I make it stop when I press a keyboard key?
This is the function:
(defun alut-waveform ()
(alut:with-init
(al:with-source (source)
(let ((buffer (alut:create-buffer-from-file "E:\\My Music\\test.wav" )))
(al:source source :buffer ...
0
votes
2answers
44 views
Manual for CLISP
I want to read help for clisp function from REPL or just from shell.
I found (symbol-plist) function for this which give this:
(symbol-plist 'bit)
(SYSTEM::TYPE-SYMBOL #<COMPILED-FUNCTION ...
1
vote
1answer
39 views
Detecting surface intersection in lispbuilder-sdl
I am working on making a game in Common Lisp, using Lispbuilder-SDL. I am currently writing a function to check for collision between two surfaces. I need to find out if a surface A intersects with ...
2
votes
0answers
79 views
How do I use CL-OPENAL in a CL-OPENGL program and make CL-OPENAL function play a wav file I create
I have cl-openal installed correctly so that this function plays "hello world" through my speakers:
(in-package #:cl-openal-examples)
(export 'alut-hello-world)
(defun alut-hello-world ()
...
3
votes
3answers
111 views
translate list comprehension into Common Lisp loop
I have very recently started learning lisp. Like many others, I am trying my hand at Project Euler problems, however I am a bit stuck at Nr. 14 : Longest Collatz Sequence.
This is what I have so far:
...
0
votes
2answers
78 views
Please explain for me what is being done in this Common Lisp Code…?
I get all the rest of the code so I would really appreciate it if you would explain this section of the following function:
(mapcar (lambda (x y)
(aref cells y x))
(list l x r l r l ...
1
vote
1answer
63 views
Common lisp Error: the value is not of the expected type number
i am new to lisp, and have some troubles with my function:
(setf (symbol-function 'reduce-our)
#'(lambda(new-expression)
(setf expression nil)
(loop while (not (equal ...
0
votes
5answers
98 views
Comparing two lists of symbols in lisp
Let's say I have two lisp lists that are the same but in different sequence: '(A B C) and '(C B A).
How can I check if they are the same (in the sense that the elements are the same)?
CL-USER> ...
0
votes
2answers
64 views
Associative list in Lisp - get all entries of a key from
In Common Lisp, is there a way to retrieve all entries from alist that match given key?
2
votes
2answers
70 views
converting number to string in lisp
I tried to find a lisp function to convert between numbers and strings and after a little googling I fond a function with the same name. when I entered (itoa 1) SLIME printed:
Undefined function ...
1
vote
2answers
83 views
how to overwrite (defun eval (expr)) function in LISP
I am new to LISP programming and it is the end of semester and our teacher asked us to do this project and I have been trying to make it but I am stuck so any help would be appreciated. the Project is ...
3
votes
1answer
75 views
Listing directory names with Unicode symbols in them isn't working correctly
I'm trying to write to a file a list of all the sub-directories, but the unicode symbols in the sub-directory names get replaced by question marks. I'm using CLISP 2.49 on Windows XP.
Here is the ...
2
votes
1answer
61 views
Why socket does not set to non blocking mode?
I try to set my socket to non-blocking mode using ioctlsocket, but it returns -1 and WSAGetLastError returns 10045 - Operation not supported. Why could that happen?
The code I write is rather ...
0
votes
3answers
60 views
Quotation mark in lisp code macro output
How can i get something like:
(my-macro name) => (foo "foo-transformed-arg-name")
I only obtained
(foo \#" foo-transformed-arg-name \#")
How can i avoid the #" in my macro output?
1
vote
1answer
75 views
“Package GLUT does not exist”, even though cl-opengl installed in Arch Linux
I have emacs configured with SLIME for developing in Common Lisp (sbcl) on Arch Linux. The thing is, I now want to start working with OpenGL as well, so I've installed cl-opengl to provide the ...
2
votes
1answer
67 views
Get a string instead of a number
This works fine:
[1]> ((lambda (x) (/ x x)) 5)
1
but this:
[2]> ((lambda (x y) (/ x y)) 5 2)
5/2
give me '5/2' instead of 2.5. How can I fix it?
