Steel Bank Common Lisp: an open-source compiler and runtime implementation of ANSI Common Lisp.

learn more… | top users | synonyms

3
votes
2answers
53 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
51 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 ...
1
vote
1answer
43 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 ...
1
vote
1answer
73 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 ...
1
vote
1answer
61 views

Turn-off debugger in Emacs SLIME

According to this question, I can customize the variable *DEBUGGER-HOOK* so that it falls back to toplevel (in REPL) instead of the debugger. I've added this line to my ~/.sbclrc and it's all fine ...
0
votes
3answers
81 views

Need help installing the GNU Scientific Library for Lisp(GSLL)

I use Emacs\Slime\SBCL\QuickLisp\Cygwin(new to Cywgin I know nothing really about it) I, per this GNU link http://common-lisp.net/project/gsll/, tried to follow these instructions under the download ...
0
votes
0answers
38 views

Documentation for VOPs in SBCL [closed]

I try to get some helpful information and insights into the Steele Bank Common Lisp (SBCL) source code. To my best knowledge there is a man page, a SBCL documentation how to use SBCL, and a ...
2
votes
1answer
118 views

How to interact with a process input/output in SBCL/Common Lisp

I have a text file with one sentence per line. I would like to lemmatize the worlds in each line using hunspell (-s option). Since I want to have the lemmas of each line separately, it wouldn't make ...
0
votes
0answers
34 views

How do I load cl-opengl and lispbuilder-sdl-image automatically at emacs startup?

How do I load cl-opengl and lispbuilder-sdl-image automatically at emacs startup? now i have to slime-compile-load these commands in emacs at startup to use cl-opengl and image: (asdf:load-system ...
1
vote
1answer
117 views

Common Lisp Macro Argument Mismatch Despite &rest / &body

I have been reading Peter Seibel's book, Practical Common Lisp, piecing together the project from the book code available online in the order it appears in the book, and so far, I have a file that ...
5
votes
2answers
92 views

In Common Lisp what is a printed representation?

I'm using SBCL, emacs, slime, and quicklisp to install various packages. I instantiate and start a hunchentoot acceptor like so, CL-USER> (hunchentoot:start (make-instance 'hunchentoot:acceptor ...
1
vote
2answers
55 views

Formatting %10t wrong from Practical Common LISP

Here's the link to the page. Essentially I have a database of lists with four values that I want to display. This is done with (defun dump-db () (dolist (cd *db*) (format t "~{~a:~10t~a~%~}~%" ...
3
votes
1answer
65 views

redefining built-in function

How would i redefine a built-in function, while keeping a reference to the old function under a different name? ie with SBCL (unlock-package 'common-lisp) (defun old+ (a b) ?????? (defun + (a b) ...
-1
votes
1answer
25 views

(list (list …))

(list '+ 3 5) (+ 3 5) (list (+ 3 5)) (8) (list (list '+ 3 5)) ((+ 3 5)) Why the result of the third line is different of the result of the second line ?
2
votes
0answers
36 views

Using the uinput kernel module in Lisp/SBCL

is there currently any way to use the uinput kernel module in SBCL? I have not been able to find any library myself (except some Japanese[?] guy's github: ...
0
votes
1answer
31 views

Loading AllegroServe

I'm trying to (require :aserve) but get this error: Don't know how to REQUIRE ASERVE. Does anyone know what I'm doing wrong? I'm using SBCL 1.0.57.0 on Ubuntu 12.10. I have the cl-aserve package ...
3
votes
1answer
133 views

Is there a way to get sbcl to print out the value of a CPU register?

Is there a way I can get SBCL to take the value of a CPU register at a certain point in my program and print it as an integer? Would I have to use gdb?
4
votes
1answer
77 views

CL and SWIG: working example?

Doing a SWIG tutorial, and using the example.c, example.i as they provided there. I generated lisp file with swig -cffi example.i. But when I run test.lisp with SBCL, i get a complaint about ...
0
votes
2answers
90 views

example of using external libraries or packages in Common Lisp

In Common Lisp, quicklisp is a popular library management tool. I'm going to use that tool and I'm going to try and use CL-WHO. I use the SBCL 1.0.57 implementation. I'm going to answer my own ...
1
vote
2answers
97 views

when setting up “Slime” in “emacs”(latest version) how do i tell it to load swank faster?

the slime manual says this: "Loading Swank faster For SBCL, we recommend that you create a custom core file with socket support and POSIX bindings included because those modules take the most time to ...
0
votes
0answers
15 views

how to get the number of arguments supplied to a lisp function

how to get the number of arguments supplied to a lisp function like in bash with the variable $0 ? (I saw a similar question but it does not give the answer...)
1
vote
1answer
80 views

not able to find package when running from SLIME, but from command line is ok

I'm running the teapot example from cl-opengl package. The only changes I've made are loading the required packages. It works fine when executed from unix shell (sbcl --load "3.cl"), but when I try to ...
0
votes
1answer
79 views

Lisp evaluation aborted on unbound variable

During the first example (the database example) in Practical Common Lisp, the author uses a macro and a couple support functions in order to replace a larger function, named where. The code works fine ...
0
votes
1answer
26 views

in-package sbcl

In the REPL I do: * (defpackage :foo (:use common-lisp)) * (in-package :foo) #<PACKAGE "FOO"> * *package* #<PACKAGE "FOO"> If I write the file: try-package.lisp : ...
2
votes
1answer
47 views

LTK: removing character echo in Entry widget

Is there anyway to have remove echoing of characters being typed in the Entry widget of LTK? For the CLI interface I use the c-string function (alien routine) (sb-alien:define-alien-routine getpass ...
0
votes
1answer
13 views

recover the 0 in #<SB-IMPL::PROCESS :EXITED 0>

on my Debian wheezy with SBCL: 1) Alsaplayer play a CD audio: * (run-program "/usr/bin/alsaplayer" '("-q" "CD.cdda") :wait nil) #<SB-IMPL::PROCESS 7199 :RUNNING> 2) ps tells me that the ...
1
vote
1answer
63 views

run-program to launch alsaplayer in sbcl

The sbcl instruction: (run-program "/bin/ls" '() :output *standard-output*) works fine on my box :squeeze _Debian_. However I can't run : (run-program "/usr/bin/alsaplayer CD.cdda" '() :output ...
4
votes
3answers
173 views

Compiling Common Lisp to an executable

I recently started learning Common Lisp using SBCL. How can I compile my Lisp programs into a Windows binary?
2
votes
1answer
82 views

What is the effect of ftype declarations on built-in functions in SBCL?

I'm building on some old Common Lisp code written by others, which includes lines such as the following at the start of a few functions: (declare (ftype (function (&rest float) float) + - * min ...
0
votes
3answers
201 views

SBCL Error Messages: Any way to improve?

I've been developing with Common Lisp for almost a year now, and this is really starting to get on my nerves. I started programming CL using CLISP, but I later switched over to SBCL for speed. I do a ...
3
votes
1answer
111 views

how to guarantee a clean exit from sbcl

I am calling my common-lisp program via a shellscript which calls sbcl with the necessary parameters and I have to guarantee that anyhow the actual program finishes the call will end clean with ...
0
votes
1answer
88 views

Lisp Toolkit (ltk): Cannot get SCALE :variable value

I am working with SBCL for Linux on an AMD64 machine. Function CONTROL-TEST makes a window with a drawing CANVAS and two sliding SCALEs. The slider :VARIABLES for UPPER-SLIDER and FORE-SLIDER are ...
3
votes
2answers
182 views

Setting up SLIME on MacOSX

I've been dancing around LISP for decades, but now have decided to get serious. I'm going through the online version of Practical Common LISP. This is my setup: MacOSX 10.7.8 Xcode 4.5.2 SBCL ...
1
vote
2answers
106 views

how to isolate memory leaks/lost using sbcl

My application, which turns given data into a tree representation, is using way too much memory. As it manages to turn around 200-300MB of memory into roughly 3GB before crashing. I now want to ...
1
vote
1answer
80 views

endless recursion SB-KERNEL:OUTPUT-OBJECT

I am using the package drakma, which properly executes: (drakma:http-request "http://www.google.de") When used alone. But as soon as I start using a package I wrote by myself it results in an ...
0
votes
0answers
94 views

SBCL used memory reports from top and (room) differs

I am running SBCL 1.0.51 on a Linux (Fedora 15) 32-bit system (kernel 3.6.5) with 1GB Ram and 256MB swap space. I fire up sbcl --dynamic-space-size 125 and start calling a function that makes ~10000 ...
0
votes
1answer
138 views

Editing a lisp file in emacs with SBCL

Ok so i am trying to get started with lisp and slime and i am running into some problems. I have correctly installed emacs and slime and SBCL but i run into problems when trying to edit files. I am ...
2
votes
2answers
188 views

unwind-protect - how does it work

I am using sbcl 1.0.57.0 and want to start a program via --eval which should generate some output, but in case that there is an uncaught error it shall exit. I figured the easiest way to accomplish ...
0
votes
1answer
80 views

What does (SB-SYS:WAIT-UNTIL-FD-USABLE 6 :INPUT NIL NIL) do?

I am curently using sbcl 1.0.57.0 and my program generates constant output at the shell, until at a certain point my program freezes without any clue whatsoever. C-c and down, reveals the last call ...
3
votes
1answer
83 views

slime - how to compensate probable recent changes

There has probably some minor/major change in how slime works, but since then I got a hard time fixing it. I am used to a slime where, when started, there is a REPL like CL-USER> a *scratch* ...
1
vote
1answer
108 views

CL-OPENGL: “Aborted” on translate

While writing a simple game using SBCL, CL-OPENGL, and Lispbuilder-SDL, I can across a strange error. Soon after I got the game working, I decided to clean out all my debugging cruft (print ...
0
votes
1answer
83 views

ASCII stream decoding error in cl-html-parse

I get an ASCII stream decoding error when I run this: (with-open-file (stream file) (net.html.parser:parse-html stream)) I'm using SBCL 1.0.58 and cl-html-parse 20101006 (using quicklisp). I ...
2
votes
2answers
157 views

CLOS: How to make a slot have an enforced type of vector of symbols?

I'm trying to create a class that can store a vector of symbols in a slot in SBCL. I cannot figure out how to set it up. My best guess thus far has been (defclass Individual () ...
1
vote
1answer
173 views

Can I specify directory for shell command?

I use the following function to run shell commands: (defun sh (cmd) #+clisp (shell cmd) #+ecl (si:system cmd) #+sbcl (sb-ext:run-program "/bin/sh" (list "-c" cmd) :input nil ...
1
vote
2answers
110 views

In Common Lisp (SBCL), is there a way to examine the individual parts of an atom?

For example, if I had the atom 'ABCD, is there a way to determine the individual characters that make up the atom?
0
votes
1answer
156 views

Slime-repl isn't here

I have installed Emacs + SBCL + slime but I have a problem with slime. I'm on a Mac OS X 10.7.4 When I do M-x slime I have two screen scratch on the top and inferior-lisp on the bottom. But I don't ...
2
votes
1answer
262 views

Reducing the size of Common Lisp binary

The SBCL created stumpwm is greater than 40 MB, which is too big just for a Window Manager. The C produced DWM is about 30K. We donot need a complete CL environment, How can i make stumpwm smaller ? ...
1
vote
1answer
108 views

How to modify this macro in common lisp to integrate collect in loop?

I have a macro below that iterates along bits in an integer. I would like to integrate the collect capability of the loop like this: (loop for x in '(a b c d e) for y in '(1 2 3 4 5) ...
0
votes
1answer
77 views

How to use a list of label names for starting threads

I want to use a list of label-names to define the order/amount of threads started with those functions. But it does not work as SBCL complains: DO-STUFF isn't fbound. E.g: (labels ((do-stuff ...
1
vote
1answer
88 views

What is “style-warning: implicitly creating new generic function” in lisp?

What does this warning mean? I have an example I used below, with this warning. Am I doing it wrong somewhere? (defvar B_00 0) (defvar B_000 0) (defvar w_000 0) (defvar w_00 0) (defconstant white 0) ...

1 2 3 4