mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-23 23:22:45 +00:00
Monotone-Parent: 8ac4ae138ee646d9a599dc78aa95bfc951416d88
Monotone-Revision: 392d6631a429629bec7220b159f559a24caa910c Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2008-04-15T16:04:16 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -171,7 +171,7 @@
|
||||
currentChar = _chars + count;
|
||||
if (inCSSDeclaration)
|
||||
{
|
||||
if (*(char *) currentChar == '}')
|
||||
if (*currentChar == '}')
|
||||
{
|
||||
inCSSDeclaration = NO;
|
||||
hasEmbeddedCSS = NO;
|
||||
@@ -179,16 +179,16 @@
|
||||
}
|
||||
else
|
||||
{
|
||||
if (*(char *) currentChar == '{')
|
||||
if (*currentChar == '{')
|
||||
inCSSDeclaration = YES;
|
||||
if (*(char *) currentChar == ',')
|
||||
if (*currentChar == ',')
|
||||
hasEmbeddedCSS = NO;
|
||||
else if (!hasEmbeddedCSS)
|
||||
{
|
||||
if (*(char *) currentChar == '@')
|
||||
if (*currentChar == '@')
|
||||
hasEmbeddedCSS = YES;
|
||||
else
|
||||
if (*(char *) currentChar > 32)
|
||||
if (*currentChar > 32)
|
||||
{
|
||||
[css appendString: [NSString stringWithCharacters: start
|
||||
length: (currentChar - start)]];
|
||||
|
||||
Reference in New Issue
Block a user