aboutsummaryrefslogtreecommitdiff
path: root/tmux.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2008-06-18 16:39:15 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2008-06-18 16:39:15 +0000
commit6c23e89f48967d5c4ab9e439ce8c6bce66bd80fb (patch)
tree747a5d9dc0e05ef3f5b989435e2de7818d3a863a /tmux.c
parent64b88167d1d480891fa79e13562b08993a2b564a (diff)
downloadrtmux-6c23e89f48967d5c4ab9e439ce8c6bce66bd80fb.tar.gz
rtmux-6c23e89f48967d5c4ab9e439ce8c6bce66bd80fb.tar.bz2
rtmux-6c23e89f48967d5c4ab9e439ce8c6bce66bd80fb.zip
Sort options from Pierre Riteau.
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 edc2a81a..0621a020 100644
--- a/tmux.c
+++ b/tmux.c
@@ -1,4 +1,4 @@
-/* $Id: tmux.c,v 1.56 2008-06-16 17:35:40 nicm Exp $ */
+/* $Id: tmux.c,v 1.57 2008-06-18 16:39:15 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -175,7 +175,7 @@ main(int argc, char **argv)
int n, opt;
client = path = name = NULL;
- while ((opt = getopt(argc, argv, "f:S:qvV")) != EOF) {
+ while ((opt = getopt(argc, argv, "f:qS:Vv")) != EOF) {
switch (opt) {
case 'f':
cfg_file = xstrdup(optarg);