From 27ee1b150ecd15a8360ca3b92f1426aba6942381 Mon Sep 17 00:00:00 2001 From: Alex Shinn Date: Mon, 5 May 2014 21:37:47 +0900 Subject: [PATCH] Clarifying display-to-string error in (chibi sxml). --- lib/chibi/sxml.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/chibi/sxml.scm b/lib/chibi/sxml.scm index 20172878..a74e9a28 100644 --- a/lib/chibi/sxml.scm +++ b/lib/chibi/sxml.scm @@ -9,7 +9,7 @@ ((char? x) (string x)) ((symbol? x) (symbol->string x)) ((number? x) (number->string x)) - (else (error "don't know how to display" x)))) + (else (error "don't know how to display as sxml" x)))) (define (html-display-escaped-attr str . o) (let ((start 0)