Tagged Questions
The ccl tag has no wiki summary.
3
votes
1answer
95 views
Does there exist standard way to run external program in common-lisp?
In clisp, the following code works:
(defun hit-history () (shell "tail ssqHitNum.txt"))
However, in ccl(clozure), the 'shell' function is not supported !
Any suggestion is appreciated!
3
votes
1answer
83 views
Parsing a key out of a key code
I am getting key events that contain asci key codes and I was wondering if there was any easy way to convert these to the actual key or character in common lisp. I am using the ccl implementation ...
2
votes
2answers
126 views
Handling Images in Clozure Cl
1) What is the proper method to make an image in ccl? Or what is the exact difference between:
(compile-file "foo.lisp") and (progn (load "foo.lisp") (save-application "foo"))?
2) Is there any ...
2
votes
4answers
137 views
some basic problem about common lisp for a begginner
I am a new one to common lisp(using clozure common lisp under windows), who is familiar with c and python before. So maybe the questions are stupid here, but be patient to give me some help.
1) ...
2
votes
2answers
107 views
ccl and *.nib files
I'm new to ccl and wanted to know how to "comunicate" between objects inside a *.nib file and ccl? I walked though the "Apple's Currency Converter in Lisp" tutorial and I'm not sure how these two ...
1
vote
1answer
47 views
how to kill a group of processes in clozure cl?
I want to run a shell command within ccl, but this command may be hung for some reason. So I want to kill all the sub process generated by this command. How can I do this?
I have tried trivial-shell ...
1
vote
2answers
100 views
lisp macro expand with partial eval
I have following code which confuse me now, I hope some can tell me the difference and how to fix this.
(defmacro tm(a)
`(concat ,(symbol-name a)))
(defun tf(a)
(list (quote concat) ...
1
vote
1answer
47 views
Troubles with own types in Qi
I've vainly tried to get the type declaration examples working with Clozure CL, e.g. the following:
(datatype fruit
if (element? F [apples pears oranges])
______________________________________
...
0
votes
0answers
42 views
Why cannot CCL load libmemutil.so?
The CCL version is 1.7-r14925M (FreebsdX8632)
[package cl-base64]...............................
[package uffi]....................................
[package elephant-utils]....Attempting to load ...
0
votes
0answers
6 views
CCL doesnot run shell command normally?
? (run-program "ls" '() :output *standard-output*)
money.lisp
ssqHitNum.txt
ssqNum.txt
#<EXTERNAL-PROCESS (ls)[1019] (EXITED : 0) #x3867BACE>
? (run-program "tail ssqHitNum.txt" '() :output ...
0
votes
1answer
32 views
Why cannot CCL load hunchentoot?
SBCL can load hunchentoot successfully. However, the CCL reported:
? (ql:quickload :hunchentoot)
To load "hunchentoot":
Load 1 ASDF system:
hunchentoot
; Loading "hunchentoot"
> Error: Unable to ...
0
votes
1answer
65 views
how to setup linedit support CCL in initial file?
I use quicklisp to install linedit, http://www.cliki.net/Linedit say "Should work on Lispworks and OpenMCL/CCL." how to write $HOME/.ccl-init.lisp?
0
votes
1answer
205 views
pass command line arguments to Clozure common lisp
I am familiar with python before and now I am trying to learn common lisp and using ccl(clozure common lisp)under windows system.
I found that there is not a convenient way to run lisp file as ...
0
votes
1answer
101 views
Matlab - longest long axis of the minimum ellipse
I need to find the longest long axis of the minimum ellipse of the components generated using CCL (to use as a threshold). I used matlab for generating connected components (bwlabel method).
I am ...