summaryrefslogtreecommitdiff
path: root/src/vtcol.rs
diff options
context:
space:
mode:
authorPhilipp Gesang <phg@phi-gamma.net>2015-05-26 18:41:32 +0200
committerPhilipp Gesang <phg@phi-gamma.net>2015-05-26 18:41:32 +0200
commit5047d01be77832cc7a03608777122b471c4a9156 (patch)
treed42815f9ac8435d73764e9e1ab9094d463d509f2 /src/vtcol.rs
parent792526d07d6b4c7fb57918074d0fa11831678e3a (diff)
downloadvtcol-5047d01be77832cc7a03608777122b471c4a9156.tar.gz
vtcol.rs: reinstate usage message
Diffstat (limited to 'src/vtcol.rs')
-rw-r--r--src/vtcol.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/vtcol.rs b/src/vtcol.rs
index 8cb0e86..03a8258 100644
--- a/src/vtcol.rs
+++ b/src/vtcol.rs
@@ -162,6 +162,11 @@ impl<'a> Job {
Err(f) => panic!(f.to_string())
};
+ if matches.opt_present("h") {
+ Job::usage(&this, opts);
+ unsafe { exit(0) };
+ };
+
if matches.opt_present("v") { unsafe { VERBOSITY = 1_u8; } };
if matches.opt_present("l") {
@@ -590,7 +595,6 @@ get_console_fd
{
Some (path) =>
{
- //let path = std::path::Path::new(std::ffi::CString::new(path.as_bytes()).unwrap());
let path = std::path::Path::new(path);
match fd_of_path(&path)
{