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:
Nick Treleaven 2008-10-13 15:26:41 +00:00
parent d8d727752e
commit 567d0634b7
2 changed files with 4 additions and 1 deletions

View File

@ -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>

View File

@ -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);