Add docstring to printf
This commit is contained in:
parent
2cb0f8cf31
commit
fb16ffa056
@ -1,6 +1,7 @@
|
|||||||
;;;; Make a macro that is like C's printf statement
|
;;;; Make a macro that is like C's printf statement
|
||||||
|
|
||||||
(defmacro printf (string &rest vars)
|
(defmacro printf (string &rest vars)
|
||||||
|
"Pretend to be printf... except preceding dec places"
|
||||||
`(format t ,(printf-to-format string) ,@vars))
|
`(format t ,(printf-to-format string) ,@vars))
|
||||||
|
|
||||||
(defun replace-all (string part replacement &key (test #'char=))
|
(defun replace-all (string part replacement &key (test #'char=))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user