From 965b7cc5c174f0e0b82d1589978f734ea257ed78 Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Tue, 6 May 2003 07:20:31 +0000 Subject: [PATCH] r4841: Auto commit for Debian build --- data-structures.lisp | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/data-structures.lisp b/data-structures.lisp index c06b2ca..3500ba4 100644 --- a/data-structures.lisp +++ b/data-structures.lisp @@ -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. @@ -89,3 +89,14 @@ :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)))) + + + -- 2.34.1