From: Kevin M. Rosenberg Date: Fri, 16 May 2003 08:41:47 +0000 (+0000) Subject: r4973: Auto commit for Debian build X-Git-Tag: v1.96~204 X-Git-Url: http://git.kpe.io/?p=kmrcl.git;a=commitdiff_plain;h=5f0d98408c20ff43709fc654978d1a5e4a675f2d r4973: Auto commit for Debian build --- diff --git a/strings.lisp b/strings.lisp index b3a3d01..bfd7c98 100644 --- a/strings.lisp +++ b/strings.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: strings.lisp,v 1.29 2003/05/16 08:32:10 kevin Exp $ +;;;; $Id: strings.lisp,v 1.30 2003/05/16 08:37:20 kevin Exp $ ;;;; ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -280,8 +280,6 @@ Leading zeros are present." Leading zeros are present." (declare (optimize (speed 3) (safety 0) (space 0)) (type fixnum len) (type integer num)) - (when pchar - (incf len)) (do* ((zero-code (char-code #\0)) (result (make-string len :initial-element #\0)) (minus? (minusp num)) @@ -289,8 +287,6 @@ Leading zeros are present." (pos (1- len) (1- pos)) (mod (mod val 10) (mod val 10))) ((or (zerop val) (minusp pos)) - (when pchar - (setf (schar result 0) pchar)) (when minus? (setf (schar result (if pchar 1 0)) #\-)) result) (declare (fixnum mod zero-code pos) (simple-string result) (integer val))