From: Olof-Joachim Frahm Date: Mon, 10 Jun 2013 19:31:41 +0000 (+0200) Subject: Add Tilde D: Decimal to FORMAT. X-Git-Url: http://repo.macrolet.net/gitweb/?p=jscl.git;a=commitdiff_plain;h=cc3d817aab96a4b61be908010b74f53938790d16 Add Tilde D: Decimal to FORMAT. --- diff --git a/src/print.lisp b/src/print.lisp index 66d8b0a..a540357 100644 --- a/src/print.lisp +++ b/src/print.lisp @@ -304,4 +304,5 @@ (defun format-special (chr arg) (case (char-upcase chr) (#\S (prin1-to-string arg)) - (#\A (princ-to-string arg)))) + (#\A (princ-to-string arg)) + (#\D (princ-to-string arg))))