From cc3d817aab96a4b61be908010b74f53938790d16 Mon Sep 17 00:00:00 2001 From: Olof-Joachim Frahm Date: Mon, 10 Jun 2013 21:31:41 +0200 Subject: [PATCH] Add Tilde D: Decimal to FORMAT. --- src/print.lisp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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)))) -- 1.7.10.4