Omit superfluous octothorpe from error message for illegal boolean
authorTaylor R. Campbell <net/mumble/campbell>
Mon, 17 Sep 2007 02:31:42 +0000 (02:31 +0000)
committerTaylor R. Campbell <net/mumble/campbell>
Mon, 17 Sep 2007 02:31:42 +0000 (02:31 +0000)
conditions.

v7/src/runtime/parse.scm

index 1eaca9424fc0a051435d8042ed1ed17459a3950c..40bda368577cee47af1a0f27e8fb1a2dcacb75f5 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: parse.scm,v 14.68 2007/09/09 03:09:38 cph Exp $
+$Id: parse.scm,v 14.69 2007/09/17 02:31:42 riastradh Exp $
 
 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
     1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
@@ -719,7 +719,7 @@ USA.
       (write-string string port)))
   (define-parse-error (illegal-boolean string)
     (lambda (string port)
-      (write-string "Ill-formed boolean: #" port)
+      (write-string "Ill-formed boolean: " port)
       (write-string string port)))
   (define-parse-error (illegal-char char)
     (lambda (char port)