From 7218cf73c0c074deb473571ce0a766473791cf0d Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Mon, 28 Jun 2004 16:39:19 +0000 Subject: [PATCH] r9707: fix declaration --- strings.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) -- 2.34.1