From 2d702ed4cf4809996de0196f28ab7a904f80bd9b Mon Sep 17 00:00:00 2001 From: Olof-Joachim Frahm Date: Wed, 21 Aug 2013 20:04:06 +0200 Subject: [PATCH] Handle unknown FORMAT specifiers for now. --- src/print.lisp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/print.lisp b/src/print.lisp index 004b540..02f3919 100644 --- 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)))) -- 1.7.10.4