Fix gcc warning, wrap line.
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@3075 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
parent
d8d727752e
commit
567d0634b7
@ -14,6 +14,8 @@
|
||||
- Code changes:
|
||||
Add ui_auto_separator_add_ref() to hide separator-like widgets when
|
||||
their visible group elements are hidden or destroyed.
|
||||
* tagmanager/css.c:
|
||||
Fix gcc warning, wrap line.
|
||||
|
||||
|
||||
2008-10-12 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
|
||||
|
@ -113,7 +113,8 @@ static CssParserState parseCssLine( const unsigned char *line, CssParserState st
|
||||
while( *line != '\0' ) /* fileReadLine returns NULL terminated strings */
|
||||
{
|
||||
vStringClear (stack);
|
||||
while (state == P_STATE_NONE && isspace ((int) *line) || isalnum ((int) *line) || ( *line == '*' && *(line-1) != '/' ))
|
||||
while (state == P_STATE_NONE &&
|
||||
(isspace ((int) *line) || isalnum ((int) *line) || ( *line == '*' && *(line-1) != '/' )))
|
||||
{
|
||||
if ((stack->length > 0 && isspace((int) *line)) || isalnum ((int) *line) || *line == '*') {
|
||||
vStringPut(stack, (int) *line);
|
||||
|
Loading…
x
Reference in New Issue
Block a user