r5152: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Tue, 17 Jun 2003 17:50:45 +0000 (17:50 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Tue, 17 Jun 2003 17:50:45 +0000 (17:50 +0000)
io.lisp
package.lisp

diff --git a/io.lisp b/io.lisp
index 69bcb649d84081078ce46cc0c1870a0c8ef8edc4..d652176188e618cb52232c0bc658032026ed1bf4 100644 (file)
--- a/io.lisp
+++ b/io.lisp
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2000
 ;;;;
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2000
 ;;;;
-;;;; $Id: io.lisp,v 1.7 2003/06/06 21:59:29 kevin Exp $
+;;;; $Id: io.lisp,v 1.8 2003/06/17 17:50:45 kevin Exp $
 ;;;;
 ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 ;;;;
 ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
       (stream-subst old new in out))))
 
 (defun print-n-chars (char n stream)
       (stream-subst old new in out))))
 
 (defun print-n-chars (char n stream)
-  (declare (fixnum n)
-          (optimize (speed 3) (safety 0) (space 0)))
-  (do ((i 0 (1+ i)))
-      ((= i n) char)
+  (declare (fixnum n) (optimize (speed 3) (safety 0) (space 0)))
+  (dotimes (i n)
     (declare (fixnum i))
     (write-char char stream)))
     (declare (fixnum i))
     (write-char char stream)))
-  
+
+(defun print-n-strings (str n stream)
+  (declare (fixnum n) (optimize (speed 3) (safety 0) (space 0)))
+  (dotimes (i n)
+    (declare (fixnum i))
+    (write-string str stream)))
+
 (defun indent-spaces (n &optional (stream *standard-output*))
   "Indent n*2 spaces to output stream"
   (print-n-chars #\space (+ n n) stream))
 
 (defun indent-spaces (n &optional (stream *standard-output*))
   "Indent n*2 spaces to output stream"
   (print-n-chars #\space (+ n n) stream))
 
+
+(defun indent-html-spaces (n &optional (stream *standard-output*))
+  "Indent n*2 html spaces to output stream"
+  (print-n-strings "&nbsp;" (+ n n) stream))
+     
+
 (defun print-list (l &optional (output *standard-output*))
   "Print a list to a stream"
   (format output "~{~A~%~}" l))
 (defun print-list (l &optional (output *standard-output*))
   "Print a list to a stream"
   (format output "~{~A~%~}" l))
index 8471a1c1bc633d269e1193645e9038c7fb1c53ff..071c920f043df62bddc1eb6d540064b10316dfba 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2000
 ;;;;
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2000
 ;;;;
-;;;; $Id: package.lisp,v 1.40 2003/06/17 13:56:38 kevin Exp $
+;;;; $Id: package.lisp,v 1.41 2003/06/17 17:50:45 kevin Exp $
 ;;;;
 ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 ;;;;
 ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
    #:last-char
    
    #:flatten
    #:last-char
    
    #:flatten
+
+   ;; io.lisp
    #:indent-spaces
    #:indent-spaces
+   #:indent-html-spaces
    #:print-n-chars
    #:print-n-chars
+   #:print-n-strings
    #:print-list
    #:print-rows
    #:file-subst
    #:print-list
    #:print-rows
    #:file-subst