Revision: 1747
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1747&view=rev
Author: eht16
Date: 2010-11-14 20:46:14 +0000 (Sun, 14 Nov 2010)
Log Message:
-----------
Update Waf to current SVN version
This fixes a build error if the WebHelper plugin is enabled and GLib version is older than 2.25.0.
Modified Paths:
--------------
trunk/geany-plugins/waf
Modified: trunk/geany-plugins/waf
===================================================================
--- trunk/geany-plugins/waf 2010-11-13 21:38:37 UTC (rev 1746)
+++ trunk/geany-plugins/waf 2010-11-14 20:46:14 UTC (rev 1747)
@@ -33,9 +33,9 @@
import os, sys
VERSION="1.6.1"
-REVISION="1369902f3a1b0afb93dd6cdf3068f626"
+REVISION="6204fe6c124920a536f913a440ffa204"
INSTALL=''
-C1='#)'
+C1='#+'
C2='#('
cwd = os.getcwd()
join = os.path.join
@@ -161,5 +161,5 @@
Scripting.waf_entry_point(cwd, VERSION, wafdir)
#==>
@@ Diff output truncated at 100000 characters. @@
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1745
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1745&view=rev
Author: frlan
Date: 2010-11-13 11:38:06 +0000 (Sat, 13 Nov 2010)
Log Message:
-----------
GeanyLaTeX: Don't insert braces on newline in case of command in front contains a quot
Modified Paths:
--------------
trunk/geanylatex/src/geanylatex.c
Modified: trunk/geanylatex/src/geanylatex.c
===================================================================
--- trunk/geanylatex/src/geanylatex.c 2010-11-13 11:37:47 UTC (rev 1744)
+++ trunk/geanylatex/src/geanylatex.c 2010-11-13 11:38:06 UTC (rev 1745)
@@ -653,7 +653,8 @@
* would cause a bigger mass. */
else if (buf[i] == ' ' ||
buf[i] == '}' ||
- buf[i] == '{')
+ buf[i] == '{' ||
+ buf[i] == '"')
{
break;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.