]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
Add g_unsetenv binding, patch by Jorn Baayen, fixes bug 562590
authorJürg Billeter <j@bitron.ch>
Fri, 28 Nov 2008 17:20:57 +0000 (17:20 +0000)
committerJürg Billeter <juergbi@src.gnome.org>
Fri, 28 Nov 2008 17:20:57 +0000 (17:20 +0000)
2008-11-28  Jürg Billeter  <j@bitron.ch>

* vapi/glib-2.0.vapi:

Add g_unsetenv binding, patch by Jorn Baayen, fixes bug 562590

svn path=/trunk/; revision=2074

ChangeLog
THANKS
vapi/glib-2.0.vapi

index 1888c25b236e3a507c53c493ebf53da6f52a9bd8..d9f9020d5d257095e79200ea1590ed14600ab2a8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-11-28  Jürg Billeter  <j@bitron.ch>
+
+       * vapi/glib-2.0.vapi:
+
+       Add g_unsetenv binding, patch by Jorn Baayen, fixes bug 562590
+
 2008-11-28  Jürg Billeter  <j@bitron.ch>
 
        * vala/valasemanticanalyzer.vala:
diff --git a/THANKS b/THANKS
index 0540f4980a9b8ed711e6b6a414e02659a18cba1c..6a9c7ed00665790b73024ac8105d5f735341239a 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -39,6 +39,7 @@ Jared Moore
 Jille Timmermans
 Johannes Schmid
 John Carr
+Jorn Baayen
 Juan Carlos Girardi
 Kyle Ambroff
 Levi Bard
index 02ba1339c84da215b0b8622db96c971131b563fd..55d84268910bcbfd6f2ab13cb8359d5607938055 100644 (file)
@@ -1756,6 +1756,8 @@ namespace GLib {
                public static weak string? get_variable (string variable);
                [CCode (cname = "g_setenv")]
                public static bool set_variable (string variable, string value, bool overwrite);
+               [CCode (cname = "g_unsetenv")]
+               public static void unset_variable (string variable);
                [CCode (cname = "g_listenv")]
                [NoArrayLength]
                public static string[] list_variables ();