diff options
author | 2019-06-05 20:00:53 +0000 | |
---|---|---|
committer | 2019-06-05 20:00:53 +0000 | |
commit | 5304b409a935f4849f86fa569260dd7f5fdcd9d4 (patch) | |
tree | 06329335b1b0bb067a7cfd638511201808b1495d /usr.bin/tmux/tmux.h | |
parent | Need to increment the argument to skip the prefix earlier, fixes (diff) | |
download | wireguard-openbsd-5304b409a935f4849f86fa569260dd7f5fdcd9d4.tar.xz wireguard-openbsd-5304b409a935f4849f86fa569260dd7f5fdcd9d4.zip |
Add a -v flag to source-file to show the commands and line numbers.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 7fbd288869c..d830168ffa8 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.908 2019/06/03 18:28:37 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.909 2019/06/05 20:00:53 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -1324,6 +1324,7 @@ struct cmd_parse_input { #define CMD_PARSE_QUIET 0x1 #define CMD_PARSE_PARSEONLY 0x2 #define CMD_PARSE_NOALIAS 0x4 +#define CMD_PARSE_VERBOSE 0x8 const char *file; u_int line; |