SF.net SVN: geany: [2272] trunk

ntrel at users.sourceforge.net ntrel at xxxxx
Fri Feb 22 12:30:54 UTC 2008


Revision: 2272
          http://geany.svn.sourceforge.net/geany/?rev=2272&view=rev
Author:   ntrel
Date:     2008-02-22 04:30:52 -0800 (Fri, 22 Feb 2008)

Log Message:
-----------
Use extern for c_tags_ignore declaration to avoid allocating a
second copy of it (patch by Daniel Richard G., thanks).

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/tagmanager/options.c

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2008-02-22 09:56:31 UTC (rev 2271)
+++ trunk/ChangeLog	2008-02-22 12:30:52 UTC (rev 2272)
@@ -1,3 +1,10 @@
+2008-02-22  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
+
+ * tagmanager/options.c:
+   Use extern for c_tags_ignore declaration to avoid allocating a
+   second copy of it (patch by Daniel Richard G., thanks).
+
+
 2008-02-22  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
 
  * scintilla/Makefile.am, src/Makefile.am:

Modified: trunk/tagmanager/options.c
===================================================================
--- trunk/tagmanager/options.c	2008-02-22 09:56:31 UTC (rev 2271)
+++ trunk/tagmanager/options.c	2008-02-22 12:30:52 UTC (rev 2272)
@@ -152,7 +152,7 @@
 }
 
 // get the tags_ignore list, exported by Geany's symbols.h
-gchar **c_tags_ignore;
+extern gchar **c_tags_ignore;
 
 /*  Determines whether or not "name" should be ignored, per the ignore list.
  */


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