Handle unknown FORMAT specifiers for now.
authorOlof-Joachim Frahm <olof@macrolet.net>
Wed, 21 Aug 2013 18:04:06 +0000 (20:04 +0200)
committerOlof-Joachim Frahm <olof@macrolet.net>
Thu, 29 Aug 2013 10:48:41 +0000 (12:48 +0200)
src/print.lisp

index 004b540..02f3919 100644 (file)
   (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))))