Skip to content
Snippets Groups Projects
Commit 00b07786 authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Added FIXME in ixChar().

Rev: src/modules/spider/xml.c:1.3
parent c72a4eab
No related branches found
No related tags found
No related merge requests found
...@@ -549,6 +549,9 @@ static int isChar(INT32 c) ...@@ -549,6 +549,9 @@ static int isChar(INT32 c)
{ {
if(c>0x20 || c==0x9 || c==0x0a || c==0x0d) return 1; if(c>0x20 || c==0x9 || c==0x0a || c==0x0d) return 1;
}else{ }else{
/* FIXME: The test below is always false!
* /grubba 1998-12-05
*/
if(c <=0xffd) if(c <=0xffd)
{ {
if(c>=0xe000) return 1; if(c>=0xe000) return 1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment