X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=strings.lisp;h=e735640189e2aa48582c8cd8b7d191dce697bb50;hb=0b55b495d74fc4fe1eea77acc4758ed6241aa3c8;hp=bfd7c984541a5e4a8abcb268ef37bec740cea132;hpb=5f0d98408c20ff43709fc654978d1a5e4a675f2d;p=kmrcl.git diff --git a/strings.lisp b/strings.lisp index bfd7c98..e735640 100644 --- a/strings.lisp +++ b/strings.lisp @@ -1,4 +1,4 @@ -<;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*- +;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*- ;;;; ************************************************************************* ;;;; FILE IDENTIFICATION ;;;; @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: strings.lisp,v 1.30 2003/05/16 08:37:20 kevin Exp $ +;;;; $Id: strings.lisp,v 1.33 2003/05/17 07:34:45 kevin Exp $ ;;;; ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -30,19 +30,19 @@ (defun count-string-words (str) (declare (simple-string str) - (optimize (speed 3) (safety 0))) + (optimize (speed 3) (safety 0) (space 0))) (let ((n-words 0) (in-word nil)) (declare (fixnum n-words)) - (dotimes (i (length str)) - (let ((ch (char str i))) - (declare (character ch)) - (if (alphanumericp ch) - (unless in-word - (incf n-words) - (setq in-word t)) - (setq in-word nil)))) - n-words)) + (do* ((len (length str)) + (i 0 (1+ i))) + ((= i len) n-words) + (declare (fixnum i)) + (if (alphanumericp (schar str i)) + (unless in-word + (incf n-words) + (setq in-word t)) + (setq in-word nil))))) ;; From Larry Hunter with modifications (defun position-char (char string start max)