r4958: Auto commit for Debian build
[hyperobject.git] / views.lisp
index 293e07ef5aa989afe597194308665cf470c9e480..d5536ce698344e96f249bdcc8f05eaa58319e35e 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2000
 ;;;;
-;;;; $Id: views.lisp,v 1.42 2003/05/14 08:30:38 kevin Exp $
+;;;; $Id: views.lisp,v 1.44 2003/05/14 21:18:12 kevin Exp $
 ;;;;
 ;;;; This file is Copyright (c) 2000-2003 by Kevin M. Rosenberg
 ;;;; *************************************************************************
   )
 
 (defmacro write-simple (v s)
-  `(if (stringp ,v)
-    (write-string ,v ,s)
-    (write-string (write-to-string ,v) ,s)))
+  `(typecase ,v
+    (string
+     (write-string ,v ,s))
+    #+allegro
+    (fixnum
+     (excl::print-fixnum ,s 10 ,v)) 
+    (symbol
+     (write-string (symbol-name ,v) ,s))
+    (t
+     (write-string (write-to-string ,v) ,s))))
 
 (defun write-ho-value (obj name type formatter cdata strm)
   (declare (ignorable type))