repo.or.cz
/
cls.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
updated version, but need to update installation scripts
[cls.git]
/
xlisponly
/
lsp
/
sendmacr.lsp
blob
b1e6cb253356f4f8286f0bacc0d92134d1fb41ab
1
(
setf
(
aref
*
readtable
* (
char-int
#
\
[))
2
(
cons
:
tmacro
3
(
lambda
(
f
c
&
aux ex
)
4
(
do
()
5
((
eq
(
peek-char
t f
) #
\
]))
6
(
setf
ex
(
append
ex
(
list
(
read
f
)))))
7
(
read-char
f
)
8
(
cons
(
cons
'
send ex
)
nil
))))
9
10
(
setf
(
aref
*
readtable
* (
char-int
#
\
]))
11
(
cons
:
tmacro
12
(
lambda
(
f
c
)
13
(
error
"misplaced right bracket"
))))
14
15