From f1df14311133f4f843e06d1b9b75375ab182f767 Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Sun, 15 Jun 2003 13:50:24 +0000 Subject: [PATCH] r5127: *** empty log message *** --- strings.lisp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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" -- 2.34.1