Skip to content
Snippets Groups Projects
Commit baa9f58d authored by Kevin Rosenberg's avatar Kevin Rosenberg
Browse files

Mild macro optimizations

parent d98ff150
No related branches found
No related tags found
No related merge requests found
......@@ -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)))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment