aboutsummaryrefslogtreecommitdiff
path: root/tmux.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2008-06-06 17:20:30 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2008-06-06 17:20:30 +0000
commit6a187bb8d379b6f3b77adcd3550ab31dc8058030 (patch)
tree1e5f6db8f36ac16e857fd9298f314dcf262e44b3 /tmux.c
parentac332b6e79b9518f1f0e7c9e563f93ce696c252b (diff)
downloadrtmux-6a187bb8d379b6f3b77adcd3550ab31dc8058030.tar.gz
rtmux-6a187bb8d379b6f3b77adcd3550ab31dc8058030.tar.bz2
rtmux-6a187bb8d379b6f3b77adcd3550ab31dc8058030.zip
Some Linux fixes; some code tidying. Don't redraw status bar so often.
Diffstat (limited to 'tmux.c')
-rw-r--r--tmux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tmux.c b/tmux.c
index 6bb55dcc..be11763a 100644
--- a/tmux.c
+++ b/tmux.c
@@ -1,4 +1,4 @@
-/* $Id: tmux.c,v 1.53 2008-06-05 16:35:32 nicm Exp $ */
+/* $Id: tmux.c,v 1.54 2008-06-06 17:20:30 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -174,7 +174,7 @@ main(int argc, char **argv)
int n, opt;
client = path = name = NULL;
- while ((opt = getopt(argc, argv, "c:f:S:s:vV")) != EOF) {
+ while ((opt = getopt(argc, argv, "f:S:vV")) != EOF) {
switch (opt) {
case 'f':
cfg_file = xstrdup(optarg);