Revert "Add disable_stdin config option"
authorDequis <dx@dxzone.com.ar>
Sat, 20 Jun 2009 04:21:27 +0000 (01:21 -0300)
committerDequis <dx@dxzone.com.ar>
Sat, 20 Jun 2009 04:21:27 +0000 (01:21 -0300)
This reverts commit 97526404f52875d82d584f18420be72fdc300d93.

uzbl.c
uzbl.h

diff --git a/uzbl.c b/uzbl.c
index 751cf6b..733fef9 100644 (file)
--- a/uzbl.c
+++ b/uzbl.c
@@ -99,7 +99,6 @@ const struct {
 /*  --------------------------------------------------------------------------------------- */
     { "uri",                 PTR(uzbl.state.uri,                  STR,  1,   cmd_load_uri)},
     { "verbose",             PTR(uzbl.state.verbose,              INT,  1,   NULL)},
-    { "disable_stdin",       PTR(uzbl.behave.disable_stdin,       INT,  1,   NULL)},
     { "mode",                PTR(uzbl.behave.mode,                INT,  0,   NULL)},
     { "inject_html",         PTR(uzbl.behave.inject_html,         STR,  0,   cmd_inject_html)},
     { "base_url",            PTR(uzbl.behave.base_url,            STR,  1,   NULL)},
@@ -2669,9 +2668,8 @@ main (int argc, char* argv[]) {
 
     /* WebInspector */
     set_up_inspector();
-    
-    if (!uzbl.behave.disable_stdin)
-        create_stdin();
+
+    create_stdin();
 
     if (verbose_override > uzbl.state.verbose)
         uzbl.state.verbose = verbose_override;
diff --git a/uzbl.h b/uzbl.h
index bbbb9b0..2cf0346 100644 (file)
--- a/uzbl.h
+++ b/uzbl.h
@@ -142,7 +142,6 @@ typedef struct {
     gboolean insert_mode;
     gboolean status_top;
     gboolean reset_command_mode;
-    gboolean disable_stdin;
     gchar*   modkey;
     guint    modmask;
     guint    http_debug;