Author: martinn
Date: Sun Feb 17 11:06:57 2008
New Revision: 2031
URL: http://svn.gnome.org/viewvc/gegl?rev=2031&view=rev

Log:
2008-02-17  Martin Nordholts  <[EMAIL PROTECTED]>

        * bin/gegl-options.c (parse_args): Applied patch from Fredrik
        Alströmer that makes the --file and -i options to the gegl binary
        work.


Modified:
   trunk/ChangeLog
   trunk/bin/gegl-options.c

Modified: trunk/bin/gegl-options.c
==============================================================================
--- trunk/bin/gegl-options.c    (original)
+++ trunk/bin/gegl-options.c    Sun Feb 17 11:06:57 2008
@@ -227,7 +227,9 @@
 
         else if (match ("--file") ||
                  match ("-i")) {
-            o->files = g_list_append (o->files, g_strdup (*curr));
+            const gchar *file_path;
+            get_string (file_path);
+            o->files = g_list_append (o->files, g_strdup (file_path));
         }
 
         else if (match ("--xml") ||
_______________________________________________
SVN-commits-list mailing list (read only)
http://mail.gnome.org/mailman/listinfo/svn-commits-list

Want to limit the commits to a few modules? Go to above URL, log in to edit 
your options and select the modules ('topics') you want.
Module maintainer? It is possible to set the reply-to to your development 
mailing list. Email [EMAIL PROTECTED] if interested.

Reply via email to