aboutsummaryrefslogtreecommitdiff
path: root/tmux.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-06-25 16:56:08 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-06-25 16:56:08 +0000
commitf1463ff3c11f7d84039bad43fe79c90ec6563b44 (patch)
tree7feb00337515a931aacc0e710eea52e1c4530eaf /tmux.c
parent0af7fa08d2c2933a4b337bd00680737a7c85919e (diff)
downloadrtmux-f1463ff3c11f7d84039bad43fe79c90ec6563b44.tar.gz
rtmux-f1463ff3c11f7d84039bad43fe79c90ec6563b44.tar.bz2
rtmux-f1463ff3c11f7d84039bad43fe79c90ec6563b44.zip
Lose -V.
Diffstat (limited to 'tmux.c')
-rw-r--r--tmux.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/tmux.c b/tmux.c
index 8fd8e4be..fe322468 100644
--- a/tmux.c
+++ b/tmux.c
@@ -1,4 +1,4 @@
-/* $Id: tmux.c,v 1.136 2009-06-25 16:47:00 nicm Exp $ */
+/* $Id: tmux.c,v 1.137 2009-06-25 16:56:08 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -226,7 +226,7 @@ main(int argc, char **argv)
unlock = flags = 0;
label = path = NULL;
- while ((opt = getopt(argc, argv, "28df:L:qS:uUVv")) != -1) {
+ while ((opt = getopt(argc, argv, "28df:L:qS:uUv")) != -1) {
switch (opt) {
case '2':
flags |= IDENTIFY_256COLOURS;
@@ -266,9 +266,6 @@ main(int argc, char **argv)
case 'v':
debug_level++;
break;
- case 'V':
- printf("%s " BUILD "\n", __progname);
- exit(0);
default:
usage();
}