diff --git a/pcl/simple-streams/external-formats/iso8859-1.lisp b/pcl/simple-streams/external-formats/iso8859-1.lisp index 02a5988016df1a8cd37eb0329d8bdd7da7ceaf44..22070021535468ee1140637d8bf96e267b055fd4 100644 --- a/pcl/simple-streams/external-formats/iso8859-1.lisp +++ b/pcl/simple-streams/external-formats/iso8859-1.lisp @@ -4,7 +4,7 @@ ;;; This code was written by Paul Foley and has been placed in the public ;;; domain. ;;; -(ext:file-comment "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/simple-streams/external-formats/iso8859-1.lisp,v 1.3 2009/06/11 16:04:02 rtoy Rel $") +(ext:file-comment "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/simple-streams/external-formats/iso8859-1.lisp,v 1.4 2010/06/30 04:02:53 rtoy Exp $") (in-package "STREAM") @@ -14,7 +14,7 @@ (define-external-format :iso8859-1 (:size 1) () - (octets-to-code (state input unput) + (octets-to-code (state input unput error) (values ,input 1)) - (code-to-octets (code state output) + (code-to-octets (code state output error) (,output (if (> ,code 255) #x3F ,code)))) diff --git a/pcl/simple-streams/external-formats/iso8859-2.lisp b/pcl/simple-streams/external-formats/iso8859-2.lisp index 0b9376b2e688d3359bc2330f4aea9f2c9b075ef4..7d49a60545dffdf86c0b61843dcf2e3c72c39e1d 100644 --- a/pcl/simple-streams/external-formats/iso8859-2.lisp +++ b/pcl/simple-streams/external-formats/iso8859-2.lisp @@ -4,7 +4,7 @@ ;;; This code was written by Paul Foley and has been placed in the public ;;; domain. ;;; -(ext:file-comment "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/simple-streams/external-formats/iso8859-2.lisp,v 1.2 2009/06/11 16:04:02 rtoy Rel $") +(ext:file-comment "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/simple-streams/external-formats/iso8859-2.lisp,v 1.3 2010/06/30 04:02:53 rtoy Exp $") (in-package "STREAM") @@ -23,10 +23,10 @@ ((table +iso-8859-2+ :type (simple-array (unsigned-byte 16) (96))) (itable (invert-table table) :type lisp::ntrie16)) - (octets-to-code (state input unput code) + (octets-to-code (state input unput error code) `(let ((,code ,input)) (values (if (< ,code 160) ,code (aref ,table (- ,code 160))) 1))) - (code-to-octets (code state output present) + (code-to-octets (code state output error present) `(,output (if (< ,code 160) ,code (let ((,code (get-inverse ,itable ,code))) diff --git a/pcl/simple-streams/external-formats/mac-roman.lisp b/pcl/simple-streams/external-formats/mac-roman.lisp index f288ba7481b19f50c2432331a9e1fe01ca30c1c4..370b098399354663ee719bdcc697982d83bad9e8 100644 --- a/pcl/simple-streams/external-formats/mac-roman.lisp +++ b/pcl/simple-streams/external-formats/mac-roman.lisp @@ -4,7 +4,7 @@ ;;; This code was written by Paul Foley and has been placed in the public ;;; domain. ;;; -(ext:file-comment "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/simple-streams/external-formats/mac-roman.lisp,v 1.3 2009/06/21 14:33:07 rtoy Rel $") +(ext:file-comment "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/simple-streams/external-formats/mac-roman.lisp,v 1.4 2010/06/30 04:02:53 rtoy Exp $") (in-package "STREAM") @@ -28,10 +28,10 @@ ((table +mac-roman+ :type (simple-array (unsigned-byte 16) (128))) (itable (invert-table table) :type lisp::ntrie16)) - (octets-to-code (state input unput code) + (octets-to-code (state input unput error code) `(let ((,code ,input)) (values (if (< ,code 128) ,code (aref ,table (- ,code 128))) 1))) - (code-to-octets (code state output present) + (code-to-octets (code state output error present) `(,output (if (< ,code 128) ,code (let ((,code (get-inverse ,itable ,code))) diff --git a/pcl/simple-streams/external-formats/utf-16-be.lisp b/pcl/simple-streams/external-formats/utf-16-be.lisp index 987abd4f6556f5f94b9e71394ee891c18a2dc9bf..be3dee70952242450f3056f2a810837cec56ecf9 100644 --- a/pcl/simple-streams/external-formats/utf-16-be.lisp +++ b/pcl/simple-streams/external-formats/utf-16-be.lisp @@ -4,7 +4,7 @@ ;;; This code was written by Paul Foley and has been placed in the public ;;; domain. ;;; -(ext:file-comment "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/simple-streams/external-formats/utf-16-be.lisp,v 1.4 2009/10/18 14:21:24 rtoy Exp $") +(ext:file-comment "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/simple-streams/external-formats/utf-16-be.lisp,v 1.5 2010/06/30 04:02:53 rtoy Exp $") (in-package "STREAM") @@ -13,7 +13,7 @@ (define-external-format :utf-16-be (:size 2) () - (octets-to-code (state input unput c1 c2 code next) + (octets-to-code (state input unput error c1 c2 code next) `(let* ((,c1 ,input) (,c2 ,input) (,code (+ (* 256 ,c1) ,c2))) @@ -48,7 +48,7 @@ (setf ,code +replacement-character-code+)) (t (setf ,state nil))) (values ,code 2))) - (code-to-octets (code state output c c1 c2) + (code-to-octets (code state output error c c1 c2) `(flet ((output (code) (,output (ldb (byte 8 8) code)) (,output (ldb (byte 8 0) code)))) diff --git a/pcl/simple-streams/external-formats/utf-16-le.lisp b/pcl/simple-streams/external-formats/utf-16-le.lisp index 979e45e440d50cf3cace73b7c6a32826be943c0c..d58903d8a980809edb7ca48ff8604c1db59291e5 100644 --- a/pcl/simple-streams/external-formats/utf-16-le.lisp +++ b/pcl/simple-streams/external-formats/utf-16-le.lisp @@ -4,7 +4,7 @@ ;;; This code was written by Paul Foley and has been placed in the public ;;; domain. ;;; -(ext:file-comment "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/simple-streams/external-formats/utf-16-le.lisp,v 1.4 2009/10/18 14:21:24 rtoy Exp $") +(ext:file-comment "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/simple-streams/external-formats/utf-16-le.lisp,v 1.5 2010/06/30 04:02:53 rtoy Exp $") (in-package "STREAM") @@ -14,7 +14,7 @@ (define-external-format :utf-16-le (:size 2) () - (octets-to-code (state input unput c1 c2 code next) + (octets-to-code (state input unput error c1 c2 code next) `(let* ((,c1 ,input) (,c2 ,input) (,code (+ (* 256 ,c2) ,c1))) @@ -49,7 +49,7 @@ (error "Illegal character U+FFFE in UTF-16 sequence.")) (t (setf ,state nil))) (values ,code 2))) - (code-to-octets (code state output c c1 c2) + (code-to-octets (code state output error c c1 c2) `(flet ((output (code) (,output (ldb (byte 8 0) code)) (,output (ldb (byte 8 8) code)))) diff --git a/pcl/simple-streams/external-formats/utf-16.lisp b/pcl/simple-streams/external-formats/utf-16.lisp index f15a9b4fd3804405dcb70f0b8e1f61884fd67045..81f4fae3990ab901cdbb9bc8fd86ab02d36d96dc 100644 --- a/pcl/simple-streams/external-formats/utf-16.lisp +++ b/pcl/simple-streams/external-formats/utf-16.lisp @@ -1,7 +1,7 @@ ;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Package: STREAM -*- ;;; ;;; ********************************************************************** -(ext:file-comment "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/simple-streams/external-formats/utf-16.lisp,v 1.6 2010/01/22 23:57:29 rtoy Exp $") +(ext:file-comment "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/simple-streams/external-formats/utf-16.lisp,v 1.7 2010/06/30 04:02:53 rtoy Exp $") (in-package "STREAM") @@ -25,7 +25,7 @@ (define-external-format :utf-16 (:size 2) () - (octets-to-code (state input unput c1 c2 code wd next st) + (octets-to-code (state input unput error c1 c2 code wd next st) `(block nil (when (null ,state) (setf ,state (cons 0 nil))) (tagbody @@ -85,7 +85,7 @@ ;; Replace with REPLACEMENT CHARACTER. (setf ,code +replacement-character-code+))) (return (values ,code ,wd)))))) - (code-to-octets (code state output c c1 c2) + (code-to-octets (code state output error c c1 c2) `(flet ((output (code) (,output (ldb (byte 8 8) code)) (,output (ldb (byte 8 0) code)))) diff --git a/pcl/simple-streams/external-formats/utf-32-be.lisp b/pcl/simple-streams/external-formats/utf-32-be.lisp index 23f67426641296ef2fd11e54ec3c4f82626bb09f..a7f7943dfd19123714be0d3ec4e7f6a306fbc40c 100644 --- a/pcl/simple-streams/external-formats/utf-32-be.lisp +++ b/pcl/simple-streams/external-formats/utf-32-be.lisp @@ -4,14 +4,14 @@ ;;; This code was written by Raymond Toy and has been placed in the public ;;; domain. ;;; -(ext:file-comment "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/simple-streams/external-formats/utf-32-be.lisp,v 1.3 2009/09/28 18:12:59 rtoy Exp $") +(ext:file-comment "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/simple-streams/external-formats/utf-32-be.lisp,v 1.4 2010/06/30 04:02:53 rtoy Exp $") (in-package "STREAM") (define-external-format :utf-32-be (:size 4) () - (octets-to-code (state input unput c c1 c2 c3 c4) + (octets-to-code (state input unput error c c1 c2 c3 c4) `(let* ((,c1 ,input) (,c2 ,input) (,c3 ,input) @@ -29,6 +29,6 @@ (t (values ,c 4))))) - (code-to-octets (code state output i) + (code-to-octets (code state output error i) `(dotimes (,i 4) (,output (ldb (byte 8 (* 8 (- 3 ,i))) ,code))))) diff --git a/pcl/simple-streams/external-formats/utf-32-le.lisp b/pcl/simple-streams/external-formats/utf-32-le.lisp index 881356307acb7da7adfec76ac1d40d660c20f2b5..46b3400779000169ee94e6c9966a8aeaad9fe18e 100644 --- a/pcl/simple-streams/external-formats/utf-32-le.lisp +++ b/pcl/simple-streams/external-formats/utf-32-le.lisp @@ -4,14 +4,14 @@ ;;; This code was written by Raymond Toy and has been placed in the public ;;; domain. ;;; -(ext:file-comment "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/simple-streams/external-formats/utf-32-le.lisp,v 1.3 2009/09/28 18:12:59 rtoy Exp $") +(ext:file-comment "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/simple-streams/external-formats/utf-32-le.lisp,v 1.4 2010/06/30 04:02:53 rtoy Exp $") (in-package "STREAM") (define-external-format :utf-32-le (:size 4) () - (octets-to-code (state input unput c c1 c2 c3 c4) + (octets-to-code (state input unput error c c1 c2 c3 c4) `(let* ((,c1 ,input) (,c2 ,input) (,c3 ,input) @@ -29,6 +29,6 @@ (t (values ,c 4))))) - (code-to-octets (code state output i) + (code-to-octets (code state output error i) `(dotimes (,i 4) (,output (ldb (byte 8 (* 8 ,i)) ,code))))) diff --git a/pcl/simple-streams/external-formats/utf-32.lisp b/pcl/simple-streams/external-formats/utf-32.lisp index 8ce1b3e5af588b67b4b95ed8dc6559c8bea65279..7731cecfd02444fdc12c4c61042f027bf206e031 100644 --- a/pcl/simple-streams/external-formats/utf-32.lisp +++ b/pcl/simple-streams/external-formats/utf-32.lisp @@ -4,7 +4,7 @@ ;;; This code was written by Raymond Toy and has been placed in the public ;;; domain. ;;; -(ext:file-comment "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/simple-streams/external-formats/utf-32.lisp,v 1.5 2009/10/18 14:21:24 rtoy Exp $") +(ext:file-comment "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/simple-streams/external-formats/utf-32.lisp,v 1.6 2010/06/30 04:02:53 rtoy Exp $") (in-package "STREAM") @@ -29,7 +29,7 @@ (define-external-format :utf-32 (:size 4) () - (octets-to-code (state input unput code c1 c2 c3 c4 st wd) + (octets-to-code (state input unput code error c1 c2 c3 c4 st wd) `(block nil (when (null ,state) (setf ,state 0)) (tagbody @@ -70,7 +70,7 @@ (go :again))) (return (values ,code ,wd)))))) - (code-to-octets (code state output i c) + (code-to-octets (code state output error i c) `(flet ((out (,c) ;; Big-endian output (dotimes (,i 4) diff --git a/pcl/simple-streams/external-formats/utf-8.lisp b/pcl/simple-streams/external-formats/utf-8.lisp index 5407d5f92e4b843db2e463dba55f4592ed7ce83e..9e4d4746ab2c92618ed88435dc2ed9cedd535ceb 100644 --- a/pcl/simple-streams/external-formats/utf-8.lisp +++ b/pcl/simple-streams/external-formats/utf-8.lisp @@ -4,7 +4,7 @@ ;;; This code was written by Paul Foley and has been placed in the public ;;; domain. ;;; -(ext:file-comment "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/simple-streams/external-formats/utf-8.lisp,v 1.5 2009/09/28 18:12:59 rtoy Exp $") +(ext:file-comment "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/simple-streams/external-formats/utf-8.lisp,v 1.6 2010/06/30 04:02:53 rtoy Exp $") (in-package "STREAM") @@ -15,7 +15,7 @@ (define-external-format :utf-8 (:min 1 :max 4) () - (octets-to-code (state input unput c i j n) + (octets-to-code (state input unput error c i j n) `(labels ((utf8 (,c ,i) (declare (type (unsigned-byte 8) ,c) (type (integer 1 5) ,i)) @@ -58,7 +58,7 @@ ((< ,c #b11110000) (utf8 ,c 2)) ((< ,c #b11111000) (utf8 ,c 3)) (t (values +replacement-character-code+ 1)))))) - (code-to-octets (code state output i j n p init) + (code-to-octets (code state output error i j n p init) `(flet ((utf8 (,n ,i) (let* ((,j (- 6 ,i)) (,p (* 6 ,i)) diff --git a/pcl/simple-streams/external-formats/void.lisp b/pcl/simple-streams/external-formats/void.lisp index 629b777298bb796529fb82f6c4f67a4a2afab978..9816fa4294a0f5f5321803958bcc62501bc14fca 100644 --- a/pcl/simple-streams/external-formats/void.lisp +++ b/pcl/simple-streams/external-formats/void.lisp @@ -4,14 +4,14 @@ ;;; This code was written by Paul Foley and has been placed in the public ;;; domain. ;;; -(ext:file-comment "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/simple-streams/external-formats/void.lisp,v 1.3 2009/06/11 16:04:02 rtoy Rel $") +(ext:file-comment "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/simple-streams/external-formats/void.lisp,v 1.4 2010/06/30 04:02:53 rtoy Exp $") ;; This is actually implemented in the external-formats code ;; It appears here only for reference, and will never get loaded (define-external-format :void (:size 0) () - (octets-to-code (state input unput) + (octets-to-code (state input unput error) `(error 'void-external-format)) - (code-to-octets (code state output) + (code-to-octets (code state output error) `(error 'void-external-format)))