From edbb8235f94afda045d78e5504038cf03994c1b9 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Tue, 30 May 2000 18:32:56 +0000 Subject: [PATCH] Fix typo in DECODE-QP-HEX-OCTET. --- v7/src/imail/mime-codec.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v7/src/imail/mime-codec.scm b/v7/src/imail/mime-codec.scm index 6713be418..386352e8c 100644 --- a/v7/src/imail/mime-codec.scm +++ b/v7/src/imail/mime-codec.scm @@ -1,6 +1,6 @@ ;;; -*-Scheme-*- ;;; -;;; $Id: mime-codec.scm,v 1.2 2000/05/27 00:11:06 cph Exp $ +;;; $Id: mime-codec.scm,v 1.3 2000/05/30 18:32:56 cph Exp $ ;;; ;;; Copyright (c) 2000 Massachusetts Institute of Technology ;;; @@ -76,7 +76,7 @@ (let ((d1 (char->digit (string-ref string (fix:+ start 1)) 16)) (d2 (char->digit (string-ref string (fix:+ start 2)) 16))) (and d1 d2 - (integer->char (fix:+ (fix:* 4 d1) d2)))))) + (integer->char (fix:+ (fix:* 16 d1) d2)))))) (define char-set:qp-encoded (char-set-invert -- 2.25.1