SF.net SVN: geany:[3075] trunk
ntrel at users.sourceforge.net
ntrel at xxxxx
Mon Oct 13 15:26:43 UTC 2008
Revision: 3075
http://geany.svn.sourceforge.net/geany/?rev=3075&view=rev
Author: ntrel
Date: 2008-10-13 15:26:41 +0000 (Mon, 13 Oct 2008)
Log Message:
-----------
Fix gcc warning, wrap line.
Modified Paths:
--------------
trunk/ChangeLog
trunk/tagmanager/css.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2008-10-13 12:38:32 UTC (rev 3074)
+++ trunk/ChangeLog 2008-10-13 15:26:41 UTC (rev 3075)
@@ -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>
Modified: trunk/tagmanager/css.c
===================================================================
--- trunk/tagmanager/css.c 2008-10-13 12:38:32 UTC (rev 3074)
+++ trunk/tagmanager/css.c 2008-10-13 15:26:41 UTC (rev 3075)
@@ -113,7 +113,8 @@
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);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Commits
mailing list