Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
K
kmrcl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nyxt
kmrcl
Commits
baa9f58d
Commit
baa9f58d
authored
14 years ago
by
Kevin Rosenberg
Browse files
Options
Downloads
Patches
Plain Diff
Mild macro optimizations
parent
d98ff150
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
macros.lisp
+24
-9
24 additions, 9 deletions
macros.lisp
with
24 additions
and
9 deletions
macros.lisp
+
24
−
9
View file @
baa9f58d
...
...
@@ -86,13 +86,28 @@
(
let
((
it
,
val
))
,@
(
cdr
cl1
))
(
acond2
,@
(
cdr
clauses
)))))))
(
defmacro
mac
(
expr
)
"Expand a macro"
`
(
pprint
(
macroexpand-1
',expr
)))
(
defmacro
mac
(
form
&key
(
stream
*standard-output*
)
(
full
nil
)
(
width
80
)
(
downcase
t
)
&environment
env
)
(
multiple-value-bind
(
expanded
expanded-p
)
(
funcall
(
if
full
#'
macroexpand
#'
macroexpand-1
)
form
env
)
(
write
expanded
:stream
stream
:pretty
t
:right-margin
width
:case
(
if
downcase
:downcase
:upcase
)
:length
nil
:level
nil
:circle
nil
:gensym
nil
)
(
fresh-line
stream
)
expanded-p
))
(
defmacro
print-form-and-results
(
form
)
`
(
format
t
"~&~A --> ~S~%"
(
write-to-string
',form
)
,
form
))
(
let
((
r
(
gensym
"RES-"
)))
`
(
let
((
r
,
form
))
(
format
t
"~&~A --> ~S~%"
',form
r
)
r
)))
;;; Loop macros
...
...
@@ -107,16 +122,16 @@
,@
body
))
(
defmacro
for
((
var
start
stop
)
&body
body
)
(
let
((
gstop
(
gensym
)))
(
let
((
gstop
(
gensym
"STOP-"
)))
`
(
do
((
,
var
,
start
(
1+
,
var
))
(
,
gstop
,
stop
))
((
>
,
var
,
gstop
))
,@
body
)))
(
defmacro
with-each-stream-line
((
var
stream
)
&body
body
)
(
let
((
eof
(
gensym
))
(
eof-value
(
gensym
))
(
strm
(
gensym
)))
(
let
((
eof
(
gensym
"EOF-"
))
(
eof-value
(
gensym
"EOF-VALUE-"
))
(
strm
(
gensym
"STREAM-"
)))
`
(
let
((
,
strm
,
stream
)
(
,
eof
',eof-value
))
(
do
((
,
var
(
read-line
,
strm
nil
,
eof
)
(
read-line
,
strm
nil
,
eof
)))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment