SF.net SVN: geany:[4656] branches/geany-0.18.1

ntrel at users.sourceforge.net ntrel at xxxxx
Tue Feb 9 18:25:56 UTC 2010


Revision: 4656
          http://geany.svn.sourceforge.net/geany/?rev=4656&view=rev
Author:   ntrel
Date:     2010-02-09 18:25:56 +0000 (Tue, 09 Feb 2010)

Log Message:
-----------
Disable Assert warning for now as some (unnecessary?) asserts are 
still firing e.g. for VHDL, Pascal.

Modified Paths:
--------------
    branches/geany-0.18.1/ChangeLog
    branches/geany-0.18.1/tagmanager/ctags.c

Modified: branches/geany-0.18.1/ChangeLog
===================================================================
--- branches/geany-0.18.1/ChangeLog	2010-02-09 17:31:17 UTC (rev 4655)
+++ branches/geany-0.18.1/ChangeLog	2010-02-09 18:25:56 UTC (rev 4656)
@@ -1,3 +1,10 @@
+2010-02-09  Nick Treleaven  <nmt at localhost.localdomain>
+
+ * tagmanager/ctags.c:
+   Disable Assert warning for now as some (unnecessary?) asserts are 
+   still firing e.g. for VHDL, Pascal.
+
+
 2010-02-07  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
 
  * src/geanymenubuttonaction.c, src/templates.c:

Modified: branches/geany-0.18.1/tagmanager/ctags.c
===================================================================
--- branches/geany-0.18.1/tagmanager/ctags.c	2010-02-09 17:31:17 UTC (rev 4655)
+++ branches/geany-0.18.1/tagmanager/ctags.c	2010-02-09 18:25:56 UTC (rev 4656)
@@ -1395,7 +1395,11 @@
 /* wrap g_warning so we don't include glib.h for all parsers, to keep compat with CTags */
 void utils_warn(const char *msg)
 {
+#ifdef GEANY_DEBUG
+	/* There are still some asserts firing e.g. for vhdl, pascal
+	 * so for now warning is disabled by default */
     g_warning("%s", msg);
+#endif
 }
 
 /* vi:set tabstop=8 shiftwidth=4: */


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