From: Kevin M. Rosenberg Date: Sun, 15 Jun 2003 13:50:24 +0000 (+0000) Subject: r5127: *** empty log message *** X-Git-Tag: v1.96~184 X-Git-Url: http://git.kpe.io/?p=kmrcl.git;a=commitdiff_plain;h=f1df14311133f4f843e06d1b9b75375ab182f767 r5127: *** empty log message *** --- diff --git a/strings.lisp b/strings.lisp index bf10d05..08aec10 100644 --- a/strings.lisp +++ b/strings.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: strings.lisp,v 1.41 2003/06/15 07:48:30 kevin Exp $ +;;;; $Id: strings.lisp,v 1.42 2003/06/15 13:49:42 kevin Exp $ ;;;; ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -392,11 +392,11 @@ for characters in a string" (not (alphanumericp ch))) (defvar +hex-chars+ "0123456789ABCDEF") -(declaim (type (simple-array character 16) +hex-chars+)) +(declaim (type simple-string +hex-chars+)) (defun hexchar (n) (declare (type (integer 0 15) n)) - (aref +hex-chars+ n)) + (schar +hex-chars+ n)) (defun escape-uri-field (query) "Escape non-alphanumeric characters for URI fields"