projects
/
jscl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
141460d
)
Handle unknown FORMAT specifiers for now.
author
Olof-Joachim Frahm
<olof@macrolet.net>
Wed, 21 Aug 2013 18:04:06 +0000
(20:04 +0200)
committer
Olof-Joachim Frahm
<olof@macrolet.net>
Thu, 29 Aug 2013 10:48:41 +0000
(12:48 +0200)
src/print.lisp
patch
|
blob
|
history
diff --git
a/src/print.lisp
b/src/print.lisp
index
004b540
..
02f3919
100644
(file)
--- a/
src/print.lisp
+++ b/
src/print.lisp
@@
-306,4
+306,7
@@
(case (char-upcase chr)
(#\S (prin1-to-string arg))
(#\A (princ-to-string arg))
- (#\D (princ-to-string arg))))
+ (#\D (princ-to-string arg))
+ (t
+ (warn "~S is not implemented yet, using ~~S instead" chr)
+ (prin1-to-string arg))))