r4841: Auto commit for Debian build
authorKevin M. Rosenberg <kevin@rosenberg.net>
Tue, 6 May 2003 07:20:31 +0000 (07:20 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Tue, 6 May 2003 07:20:31 +0000 (07:20 +0000)
data-structures.lisp

index c06b2ca0ac042d5296e5b4d08755be9e045437ae..3500ba419a002b41b74e28c10bc5fab8c7b3fb19 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Author:        Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2000
 ;;;;
-;;;; $Id: data-structures.lisp,v 1.8 2003/05/06 07:17:35 kevin Exp $
+;;;; $Id: data-structures.lisp,v 1.9 2003/05/06 07:20:31 kevin Exp $
 ;;;;
 ;;;; This file, part of UMLisp, is
 ;;;;    Copyright (c) 2000-2002 by Kevin M. Rosenberg, M.D.
                     :custom-value-fun nil)
   (:documentation "UMLS column"))
 
+
+(defmethod print-object ((obj ufile) (s stream))
+  (print-unreadable-object (obj s :type t :identity t)
+    (format s "~A" (fil obj))))
+
+(defmethod print-object ((obj ucol) (s stream))
+  (print-unreadable-object (obj s :type t :identity t)
+    (format s "~A" (col obj))))
+
+
+