From 2c07f90c9c0465c523caf02d00a4376f266882ce Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Wed, 14 May 2003 21:33:02 +0000 Subject: [PATCH] r4938: Auto commit for Debian build --- class-support.lisp | 32 +++++++++++++++++--------------- debian/changelog | 6 ++++++ 2 files changed, 23 insertions(+), 15 deletions(-) diff --git a/class-support.lisp b/class-support.lisp index 8f97dd1..09bca91 100644 --- a/class-support.lisp +++ b/class-support.lisp @@ -7,7 +7,7 @@ ;;;; Author: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: class-support.lisp,v 1.5 2003/05/07 22:53:36 kevin Exp $ +;;;; $Id: class-support.lisp,v 1.6 2003/05/14 21:33:02 kevin Exp $ ;;;; ;;;; This file, part of UMLisp, is ;;;; Copyright (c) 2000-2002 by Kevin M. Rosenberg, M.D. @@ -21,62 +21,64 @@ ;;; Formatting routines + + (defgeneric fmt-cui (c)) (defmethod fmt-cui ((c ucon)) - (format nil "C~7,'0d" (cui c))) + (fmt-cui (cui c))) (defmethod fmt-cui ((c fixnum)) - (format nil "C~7,'0d" c)) + (prefixed-fixnum-string c #\C 8)) (defmethod fmt-cui ((c string)) (if (eql (aref c 0) #\C) c - (format nil "C~7,'0d" (parse-integer c)))) + (fmt-cui (parse-integer c)))) (defmethod fmt-cui ((c null)) (format nil "nil")) (defgeneric fmt-lui (c)) (defmethod fmt-lui ((l uterm)) - (format nil "L~7,'0d" (lui l))) + (fmt-lui (lui l))) (defmethod fmt-lui ((l fixnum)) - (format nil "L~7,'0d" l)) + (prefixed-fixnum-string l #\L 8)) (defmethod fmt-lui ((l string)) (if (eql (aref l 0) #\L) l - (format nil "L~7,'0d" (parse-integer l)))) + (fmt-lui (parse-integer l)))) (defgeneric fmt-sui (s)) (defmethod fmt-sui ((s ustr)) - (format nil "S~7,'0d" (sui s))) + (fmt-sui (sui s))) (defmethod fmt-sui ((s fixnum)) - (format nil "S~7,'0d" s)) + (prefixed-fixnum-string s #\S 8)) (defmethod fmt-sui ((s string)) (if (eql (aref s 0) #\S) s - (format nil "S~7,'0d" (parse-integer s)))) + (fmt-sui (parse-integer s)))) (defgeneric fmt-tui (t)) -(defmethod fmt-tui ((s fixnum)) - (format nil "T~3,'0d" s)) +(defmethod fmt-tui ((t fixnum)) + (prefixed-fixnum-string t #\T 4)) (defmethod fmt-tui ((s string)) (if (eql (aref s 0) #\T) s - (format nil "T~3,'0d" (parse-integer s)))) + (fmt-tui (parse-integer s)))) (defgeneric fmt-eui (e)) (defmethod fmt-eui ((e fixnum)) - (format nil "E~7,'0d" e)) + (prefixed-fixnum-string e #\E 8)) (defmethod fmt-eui ((e string)) (if (eql (aref e 0) #\E) e - (format nil "E~7,'0d" (parse-integer e)))) + (fmt-eui (parse-integer e)))) (defmethod fmt-eui ((e null)) (format nil "nil")) diff --git a/debian/changelog b/debian/changelog index 7a7f50d..a72f185 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +cl-umlisp (3.2.1-1) unstable; urgency=low + + * New upstream + + -- Kevin M. Rosenberg Wed, 14 May 2003 15:31:21 -0600 + cl-umlisp (3.2.0-1) unstable; urgency=low * Rework plural user-names for newest hyperobject -- 2.34.1