Removed redundant 'break;' statement. Based on SVN version 105 of offical version of TinyScheme.

This commit is contained in:
Kevin Cozens 2015-07-14 17:15:30 -04:00
parent 2fae5d7d8b
commit 4b55c551f3
1 changed files with 4 additions and 3 deletions

View File

@ -2197,13 +2197,14 @@ static void atom2str(scheme *sc, pointer l, int f, char **pp, int *plen) {
} else if(c<32) {
snprintf(p,STRBUFFSIZE, "#\\%s", charnames[c]);
break;
}
}
#else
if(c<32) {
snprintf(p,STRBUFFSIZE,"#\\x%x",c); break;
snprintf(p,STRBUFFSIZE,"#\\x%x",c);
break;
}
#endif
snprintf(p,STRBUFFSIZE,"#\\%c",c); break;
snprintf(p,STRBUFFSIZE,"#\\%c",c);
break;
}
}