aboutsummaryrefslogtreecommitdiff
path: root/tmux.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2010-12-10 21:19:13 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2010-12-10 21:19:13 +0000
commit1a4d78c7af5826e653ae1a3c010ef2171dcdb822 (patch)
tree018b2e9fd1777e44c63e1f0d65435de0404212ad /tmux.c
parent286fef9b4dde28186d92beaa27fae94c7cfd692c (diff)
downloadrtmux-1a4d78c7af5826e653ae1a3c010ef2171dcdb822.tar.gz
rtmux-1a4d78c7af5826e653ae1a3c010ef2171dcdb822.tar.bz2
rtmux-1a4d78c7af5826e653ae1a3c010ef2171dcdb822.zip
-V to report version, SF issue 3038862.
Diffstat (limited to 'tmux.c')
-rw-r--r--tmux.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/tmux.c b/tmux.c
index bd3e08bf..1d83558c 100644
--- a/tmux.c
+++ b/tmux.c
@@ -1,4 +1,4 @@
-/* $Id: tmux.c,v 1.225 2010-12-07 20:23:21 micahcowan Exp $ */
+/* $Id: tmux.c,v 1.226 2010-12-10 21:19:13 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -62,8 +62,8 @@ __dead void
usage(void)
{
fprintf(stderr,
- "usage: %s [-28lquv] [-c shell-command] [-f file] [-L socket-name]\n"
- " [-S socket-path] [command [flags]]\n",
+ "usage: %s [-28lquvV] [-c shell-command] [-f file] "
+ " [-L socket-name][-S socket-path] [command [flags]]\n",
__progname);
exit(1);
}
@@ -243,7 +243,7 @@ main(int argc, char **argv)
quiet = flags = 0;
label = path = NULL;
login_shell = (**argv == '-');
- while ((opt = getopt(argc, argv, "28c:df:lL:qS:uUv")) != -1) {
+ while ((opt = getopt(argc, argv, "28c:df:lL:qS:uUvV")) != -1) {
switch (opt) {
case '2':
flags |= IDENTIFY_256COLOURS;
@@ -258,6 +258,9 @@ main(int argc, char **argv)
xfree(shell_cmd);
shell_cmd = xstrdup(optarg);
break;
+ case 'V':
+ printf("%s %s\n", __progname, BUILD);
+ exit(0);
case 'f':
if (cfg_file != NULL)
xfree(cfg_file);