r5334: *** empty log message ***

This commit is contained in:
Kevin M. Rosenberg
2003-07-19 18:21:43 +00:00
parent 55a5a47351
commit 617fff5950

View File

@ -22,7 +22,7 @@
;; Original version from ACL 6.1: ;; Original version from ACL 6.1:
;; uri.cl,v 2.3.6.4.2.1 2001/08/09 17:42:39 layer ;; uri.cl,v 2.3.6.4.2.1 2001/08/09 17:42:39 layer
;; ;;
;; $Id: src.lisp,v 1.5 2003/07/19 13:34:12 kevin Exp $ ;; $Id: src.lisp,v 1.6 2003/07/19 18:21:43 kevin Exp $
(defpackage #:puri (defpackage #:puri
(:use #:cl) (:use #:cl)
@ -78,26 +78,24 @@
#+(or allegro cmu sbcl lispworks) #+(or allegro cmu sbcl lispworks)
str str
#-(or allegro cmu sbcl lispworks) #-(or allegro cmu sbcl lispworks)
(subseq new-string 0 (incf new-i))) (subseq str 0 size))
#-allegro
(defun .parse-error (fmt &rest args) (defun .parse-error (fmt &rest args)
#+allegro (apply #'excl::.parse-error fmt args) (error (make-condition 'parse-error :format-control fmt
#-allegro (error
(make-condition 'parse-error :format-control fmt
:format-arguments args))) :format-arguments args)))
(defun internal-reader-error (stream fmt &rest args)
#+allegro
(apply #'excl::internal-reader-error stream fmt args)
#-allegro #-allegro
(apply #'format stream (defun internal-reader-error (stream fmt &rest args)
"#u takes a string or list argument: ~s" args)) (apply #'format stream fmt args))
#-allegro (defvar *current-case-mode* :case-insensitive-upper) #-allegro (defvar *current-case-mode* :case-insensitive-upper)
#+allegro (eval-when (compile load eval) #+allegro (eval-when (compile load eval)
(import '(excl:*current-case-mode* (import '(excl:*current-case-mode*
excl:delimited-string-to-list excl:delimited-string-to-list
excl::.parse-error
excl::internal-reader-error
excl:if*))) excl:if*)))
#-allegro #-allegro
@ -1284,6 +1282,7 @@ Executes the forms once for each uri with var bound to the current uri"
stream stream
"#u takes a string or list argument: ~s" arg))))) "#u takes a string or list argument: ~s" arg)))))
#+allegro #+allegro
excl:: excl::
#+allegro #+allegro