From d1418553d03847d8ddcfee8c08255faf3f5e4478 Mon Sep 17 00:00:00 2001 From: Dmitry Kalyanov Date: Sat, 8 Aug 2009 21:58:06 +0400 Subject: [PATCH] doc: removed verbose messages from colorize-lisp-examples --- doc/colorize-lisp-examples.lisp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/colorize-lisp-examples.lisp b/doc/colorize-lisp-examples.lisp index ee428f3..a269c1d 100644 --- a/doc/colorize-lisp-examples.lisp +++ b/doc/colorize-lisp-examples.lisp @@ -287,7 +287,7 @@ span.paren6:hover { color : inherit; background-color : #FFBAFF; } (if (> current-position (length string)) (return-from scan-string (progn - (format *trace-output* "Scan was called ~S times.~%" + #+nil(format *trace-output* "Scan was called ~S times.~%" *scan-calls*) (finish-current (length string) nil (constantly nil)) result)) @@ -1020,7 +1020,7 @@ preprocessing output in a @lisp block before passing to colorize." '("
"
                                  "
"))))
                  (cond (len
-                         (format t "processing ~A~%" line)
+                         #+nil(format t "processing ~A~%" line)
                          (setq line-processor #'process-line-inside-pre)
                          (write-string "
" output)
                          (push (subseq line (+ len +indent+)) piece-of-code)
@@ -1036,6 +1036,7 @@ preprocessing output in a @lisp block before passing to colorize."
                                                :name :wild)))
     (let* ((name (namestring html-file))
            (temp-name (strcat name ".temp")))
+      (format t "processing ~A~%" name)
       (process-file name temp-name)
       (system "mv ~A ~A" temp-name name))))
 
-- 
1.7.10.4