From 0da5f9160e96bfd646c74bc7367f2ce5f40789d6 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 7 Sep 2014 13:38:46 -0400 Subject: [PATCH] STDIN - Removed the stdin reading feature, which has not been enabled, and is more problematic than it should be. --- src/Context.cpp | 4 ---- src/args.cpp | 1 - 2 files changed, 5 deletions(-) diff --git a/src/Context.cpp b/src/Context.cpp index fa4c13306..ab6e6707b 100644 --- a/src/Context.cpp +++ b/src/Context.cpp @@ -129,10 +129,6 @@ int Context::initialize (int argc, const char** argv) parser.initialize (argc, argv); // task arg0 arg1 ... - // echo one two -- three | task zero --> task zero one two - // 'three' is left in the input buffer. - parser.appendStdin (); // echo stdin0 | task ... - // Process 'rc:' command line override. parser.findOverrides (); // rc: rc.: parser.getOverrides (home_dir, rc_file); // <-- diff --git a/src/args.cpp b/src/args.cpp index 6aadaa554..7392cc6c4 100644 --- a/src/args.cpp +++ b/src/args.cpp @@ -37,7 +37,6 @@ int main (int argc, const char** argv) { Parser parser; parser.initialize (argc, argv); - parser.appendStdin (); parser.findOverrides (); // Read-only commands.