Removed extraneous 'x' when writing character constants. Fixes bug #721775.

This commit is contained in:
Kevin Cozens 2014-02-03 17:30:04 -05:00
parent 9fe869236b
commit 1fa797e731
1 changed files with 1 additions and 1 deletions

View File

@ -2199,7 +2199,7 @@ static void atom2str(scheme *sc, pointer l, int f, char **pp, int *plen) {
snprintf(p,STRBUFFSIZE,"#\\x%x",c); break;
}
#endif
snprintf(p,STRBUFFSIZE,"#\\x%c",c); break;
snprintf(p,STRBUFFSIZE,"#\\%c",c); break;
}
}
} else if (is_symbol(l)) {