aboutsummaryrefslogtreecommitdiffhomepage
path: root/uzbl.c
diff options
context:
space:
mode:
authorGravatar Dequis <dx@dxzone.com.ar>2009-06-20 01:21:27 -0300
committerGravatar Dequis <dx@dxzone.com.ar>2009-06-20 01:21:27 -0300
commitd854da32ff575ff21dc6ffc0bc63737a76a7f2a6 (patch)
treeb76e91f5adf5be50adbf39709cc6735c6f56a17b /uzbl.c
parentf1a114c9e201b09eb81ba3e93365440f8e95f956 (diff)
Revert "Add disable_stdin config option"
Diffstat (limited to 'uzbl.c')
-rw-r--r--uzbl.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/uzbl.c b/uzbl.c
index 751cf6b..733fef9 100644
--- 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;