From: Kevin M. Rosenberg Date: Wed, 14 May 2003 21:33:02 +0000 (+0000) Subject: r4938: Auto commit for Debian build X-Git-Tag: v1.96~208 X-Git-Url: http://git.kpe.io/?p=kmrcl.git;a=commitdiff_plain;h=066d1f100407cebbf9b28ee9135d8538876e8c3f r4938: Auto commit for Debian build --- diff --git a/debian/changelog b/debian/changelog index 578b3d0..2d9f82f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +cl-kmrcl (1.45-1) unstable; urgency=low + + * New upstream + + -- Kevin M. Rosenberg Wed, 14 May 2003 15:27:40 -0600 + cl-kmrcl (1.44-1) unstable; urgency=low * New upstream diff --git a/package.lisp b/package.lisp index 87f6372..2e3ea24 100644 --- a/package.lisp +++ b/package.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: package.lisp,v 1.30 2003/05/09 09:35:04 kevin Exp $ +;;;; $Id: package.lisp,v 1.31 2003/05/14 21:31:42 kevin Exp $ ;;;; ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -44,6 +44,8 @@ #:position-char #:delimited-string-to-list #:list-to-delimited-string + #:prefixed-fixnum-string + #:flatten #:indent-spaces diff --git a/strings.lisp b/strings.lisp index 6348eec..937f670 100644 --- a/strings.lisp +++ b/strings.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: strings.lisp,v 1.26 2003/05/11 21:51:44 kevin Exp $ +;;;; $Id: strings.lisp,v 1.27 2003/05/14 21:31:42 kevin Exp $ ;;;; ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -253,3 +253,24 @@ list of characters and replacement strings." (write-string elem strm) (unless (and last-elem last-list) (write-string separator strm))))) + +(defun prefixed-fixnum-string (num pchar len) + "Outputs a string of LEN chars with the initial character being +PCHAR. Leading zeros are printed." + (declare (optimize (speed 3) (safety 0) (space 0)) + (type fixnum v len)) + (let ((zero-code (char-code #\0)) + (result (make-string len :initial-element #\0)) + (pos (1- len))) + (declare (fixnum zero-code pos) + (simple-string result)) + (do* ((val num (floor (/ val 10))) + (mod (nth-value 1 (floor val 10)) + (nth-value 1 (floor val 10)))) + ((or (zerop val) (minusp pos))) + (declare (fixnum val mod)) + (setf (schar result pos) (code-char (+ zero-code mod))) + (decf pos)) + (when pchar + (setf (schar result 0) pchar)) + result))