r4938: Auto commit for Debian build
authorKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 14 May 2003 21:33:02 +0000 (21:33 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 14 May 2003 21:33:02 +0000 (21:33 +0000)
debian/changelog
package.lisp
strings.lisp

index 578b3d0c6779d7afa420cbcd6ceb754ca625c9ba..2d9f82f8ed2abedc772fa9bdac26d16ea3e1ad47 100644 (file)
@@ -1,3 +1,9 @@
+cl-kmrcl (1.45-1) unstable; urgency=low
+
+  * New upstream
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 14 May 2003 15:27:40 -0600
+
 cl-kmrcl (1.44-1) unstable; urgency=low
 
   * New upstream
index 87f6372fe3e0e23f7d9a6df4d14e5769232fe6f4..2e3ea2400ea953cf51d5dab1be6ea3633a9fdce4 100644 (file)
@@ -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
index 6348eecdc4cbbc30cd4aa04adbb7beadf7b5916c..937f67039e45bbc9225ad25df9866ead8c479c22 100644 (file)
@@ -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))