Do NOT use C++-style comments in a C file. It causes builds to fail on some compilers. Fixing cement tinderbox bustage

git-svn-id: svn://10.0.0.236/trunk@197417 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
cls%seawood.org
2006-05-17 02:33:19 +00:00
parent 8aecb9eb06
commit 7e3a11639a

View File

@@ -395,8 +395,10 @@ PRIVATE PRBool uCheckAndScanAlways2ByteShiftGR(
PRUint32* inscanlen
)
{
// Both bytes should be in the range of [0xa1,0xfe] for 94x94 character sets
// invoked on GR. No encoding implemented in Mozilla uses 96x96 char. sets.
/*
*Both bytes should be in the range of [0xa1,0xfe] for 94x94 character sets
* invoked on GR. No encoding implemented in Mozilla uses 96x96 char. sets.
*/
if(inbuflen < 2 || ! CHK_GR94_2Byte(in[1],in[0]))
return PR_FALSE;
else