From 0d3907d2dd857ff75efe11cfcde39937d6ed3982 Mon Sep 17 00:00:00 2001 From: "Taylor R. Campbell" Date: Sun, 5 Aug 2007 08:08:40 +0000 Subject: [PATCH] Escape the backslash within `#\=' in the error message `Misplaced #\= in BASE64 input.' Perhaps the message should use quote marks, rather than Scheme's #\ notation. --- v7/src/runtime/mime-codec.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v7/src/runtime/mime-codec.scm b/v7/src/runtime/mime-codec.scm index 871ad8b6a..b2f440183 100644 --- a/v7/src/runtime/mime-codec.scm +++ b/v7/src/runtime/mime-codec.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: mime-codec.scm,v 14.18 2007/01/05 21:19:28 cph Exp $ +$Id: mime-codec.scm,v 14.19 2007/08/05 08:08:40 riastradh Exp $ Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, @@ -582,7 +582,7 @@ USA. (define (decode-base64-char input index) (let ((digit (vector-8b-ref base64-char-table (vector-8b-ref input index)))) (if (fix:> digit #x40) - (error "Misplaced #\= in BASE64 input.")) + (error "Misplaced #\\= in BASE64 input.")) digit)) (define base64-char-table) -- 2.25.1