From: Chris Hanson Date: Fri, 18 Jul 2008 10:18:00 +0000 (+0000) Subject: Eliminate cold-load call to SYMBOL->STRING. X-Git-Tag: 20090517-FFI~277 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=97892ee7fdc424a1ef3565feb26d17816f9aa7b2;p=mit-scheme.git Eliminate cold-load call to SYMBOL->STRING. --- diff --git a/v7/src/runtime/error.scm b/v7/src/runtime/error.scm index 3174a244e..b3ec403d1 100644 --- a/v7/src/runtime/error.scm +++ b/v7/src/runtime/error.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: error.scm,v 14.74 2008/01/30 20:02:30 cph Exp $ +$Id: error.scm,v 14.75 2008/07/18 10:18:00 cph Exp $ Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, @@ -67,7 +67,7 @@ USA. (lambda (n-fields field-indexes) (%make-condition-type (cond ((string? name) (string-copy name)) - ((symbol? name) (symbol->string name)) + ((symbol? name) (symbol->utf8-string name)) ((not name) "(anonymous)") (else (error:wrong-type-argument name "condition-type name"