git.fiddlerwoaroof.com
Browse code

fix compile problem

dancy authored on 04/06/2007 23:45:17
Showing 1 changed files
... ...
@@ -14,7 +14,7 @@
14 14
 ;; merchantability or fitness for a particular purpose.  See the GNU
15 15
 ;; Lesser General Public License for more details.
16 16
 ;;
17
-;; $Id: mime-transfer-encoding.cl,v 1.11 2007/06/01 16:24:40 dancy Exp $
17
+;; $Id: mime-transfer-encoding.cl,v 1.12 2007/06/04 23:45:17 dancy Exp $
18 18
 
19 19
 (defpackage :net.post-office
20 20
   (:use #:lisp #:excl)
... ...
@@ -170,8 +170,8 @@
170 170
 				(unread nextbyte))
171 171
 		       else ;; =XY encoding
172 172
 			    (let* ((byte3 (get-byte :eof-value 256))
173
-				   (high (aref *qp-digit-values* nextbyte))
174
-				   (low (aref *qp-digit-values* byte3))
173
+				   (high (aref #.*qp-digit-values* nextbyte))
174
+				   (low (aref #.*qp-digit-values* byte3))
175 175
 				   (value (logior (the fixnum (ash high 4)) low)))
176 176
 			      (declare (fixnum byte3 high low value))
177 177
 			      (if* (< value 0)
... ...
@@ -246,8 +246,8 @@
246 246
 				(unread nextbyte))
247 247
 		       else ;; =XY encoding
248 248
 			    (let* ((byte3 (get-byte :eof-value 256))
249
-				   (high (aref *qp-digit-values* nextbyte))
250
-				   (low (aref *qp-digit-values* byte3))
249
+				   (high (aref #.*qp-digit-values* nextbyte))
250
+				   (low (aref #.*qp-digit-values* byte3))
251 251
 				   (value (logior (the fixnum (ash high 4)) low)))
252 252
 			      (declare (fixnum byte3 high low value))
253 253
 			      (if* (< value 0)