Kaydet (Commit) 567d0634 authored tarafından Nick Treleaven's avatar Nick Treleaven

Fix gcc warning, wrap line.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@3075 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst d8d72775
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment