todo cleanups
authorDieter Plaetinck <dieter@plaetinck.be>
Sun, 26 Apr 2009 19:16:23 +0000 (21:16 +0200)
committerDieter Plaetinck <dieter@plaetinck.be>
Sun, 26 Apr 2009 19:16:23 +0000 (21:16 +0200)
TODO
uzbl.c

diff --git a/TODO b/TODO
index 2b91bc5..1b0a0f2 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,15 +1,12 @@
 * implement all the ideas from README
 * get a logo
 * improve site
-* get rid of segfaults for --config -> barrucadu
 * Support for binding keyboard shortcuts in config file.
 * where to put proxy config? webkit support?
-* improve commandline arguments
 * implement XDG basedir spec
 * check configured commands if they end on .sh so users don't need to prepend /bin/<shell>
 * implement a more advanced dmenu alike that behaves like FF's awesomebar and where you can search in url + window title
 * recognize -h with GOption?
-* fix config loading from arg
 * implement a vimperator-like link following scheme.  but let user pick his favorite characters to construct the "link identifiers" with.
 * add a keybind to hand the current url to an external scrips, so you can edit it and/or store it in the primary and secondary clipboards
 
diff --git a/uzbl.c b/uzbl.c
index 9337e08..97da165 100644 (file)
--- a/uzbl.c
+++ b/uzbl.c
@@ -399,7 +399,7 @@ settings_init () {
         printf("Config file: %s\n", config_file);
 
         GKeyFile* config = g_key_file_new ();
-        gboolean res = g_key_file_load_from_file (config, config_file, G_KEY_FILE_NONE, NULL); //TODO: pass config file as argument
+        gboolean res = g_key_file_load_from_file (config, config_file, G_KEY_FILE_NONE, NULL);
 
         if (res) {
             printf ("Config loaded\n");