repo.or.cz
/
biolisp.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
create sql module.
[biolisp.git]
/
lambda-utils
/
abbrev.lisp
blob
74e91bd7efcb2c57315f7e38ec00d5d8bdf12f75
1
(
in-package
:
lambda-utils
)
2
3
(
defmacro
abbrev
(
short
long
)
4
`(
defmacro
,
short
(&
rest args
)
5
`(,',
long
,@
args
)))
6
7
(
abbrev
mvbind multiple-value-bind
)