use plain char if no translation in troffchar (fix ", "" in wintext(1))

This commit is contained in:
rsc 2007-03-25 17:25:30 +00:00
parent 1e987f65a1
commit 2b66e58623

View file

@ -705,7 +705,7 @@ troffchar(char *s)
for(i=0; troffchars[i].name!=nil; i++) for(i=0; troffchars[i].name!=nil; i++)
if(strcmp(s, troffchars[i].name) == 0) if(strcmp(s, troffchars[i].name) == 0)
return troffchars[i].value; return troffchars[i].value;
return "??"; return s;
} }
void void