forked from KolibriOS/kolibrios
Fix small bug in tag.h
git-svn-id: svn://kolibrios.org@6377 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
0b7ac66eda
commit
c8e394d8fd
@ -221,8 +221,8 @@ char *unicode_tags[]={
|
||||
// if not found--> return 0
|
||||
char get_symbol() {
|
||||
int i;
|
||||
debugln(#str);
|
||||
for (i=0; unicode_tags[i]!=0; i+=2) {}
|
||||
//debugln(#str);
|
||||
for (i=0; unicode_tags[i]!=0; i+=2) {
|
||||
if (strcmp(#str, unicode_tags[i]) == 0) {
|
||||
//debugval("i: ", i);
|
||||
return unicode_tags[i+1]);
|
||||
|
Loading…
Reference in New Issue
Block a user