From: Kevin M. Rosenberg Date: Mon, 28 Jun 2004 16:39:19 +0000 (+0000) Subject: r9707: fix declaration X-Git-Tag: v1.96~67 X-Git-Url: http://git.kpe.io/?p=kmrcl.git;a=commitdiff_plain;h=7218cf73c0c074deb473571ce0a766473791cf0d r9707: fix declaration --- diff --git a/strings.lisp b/strings.lisp index 533bf01..8201a98 100644 --- a/strings.lisp +++ b/strings.lisp @@ -627,7 +627,7 @@ for characters in a string" (defun trim-non-alphanumeric (word) "Strip non-alphanumeric characters from beginning and end of a word." (declare (simple-string word) - (optimize (speed 3) (safety 0) (size 0))) + (optimize (speed 3) (safety 0) (space 0))) (let* ((start 0) (len (length word)) (end len))