(keyword_print): Use scm_print_symbol_name so that
authorMarius Vollmer <mvo@zagadka.de>
Wed, 30 May 2001 23:48:13 +0000 (23:48 +0000)
committerMarius Vollmer <mvo@zagadka.de>
Wed, 30 May 2001 23:48:13 +0000 (23:48 +0000)
weird names are printed correctly.

libguile/keywords.c

index f17eeda..a3819c6 100644 (file)
@@ -62,7 +62,9 @@ static int
 keyword_print (SCM exp, SCM port, scm_print_state *pstate)
 {
   scm_puts ("#:", port);
-  scm_puts(1 + SCM_SYMBOL_CHARS (SCM_CDR (exp)), port);
+  scm_print_symbol_name (1 + SCM_SYMBOL_CHARS (SCM_CDR (exp)),
+                        SCM_SYMBOL_LENGTH (SCM_CDR (exp)),
+                        port);
   return 1;
 }