diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2023-09-01 16:40:39 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2023-09-01 16:40:39 +0000 |
commit | 79fd69085a5731cfff4e38c721e3f8d43df899ec (patch) | |
tree | 0e758e1546a0349636fb7090cc3b0fca1a309569 /usr.bin/tmux | |
parent | 6fc3605a6182b79d13dbd0006464d24505a4ede8 (diff) |
Add missing -T to getopt string.
Diffstat (limited to 'usr.bin/tmux')
-rw-r--r-- | usr.bin/tmux/cmd-capture-pane.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/cmd-capture-pane.c b/usr.bin/tmux/cmd-capture-pane.c index 25051b87fac..7f7c4e68edf 100644 --- a/usr.bin/tmux/cmd-capture-pane.c +++ b/usr.bin/tmux/cmd-capture-pane.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-capture-pane.c,v 1.59 2022/09/28 07:55:29 nicm Exp $ */ +/* $OpenBSD: cmd-capture-pane.c,v 1.60 2023/09/01 16:40:38 nicm Exp $ */ /* * Copyright (c) 2009 Jonathan Alvarado <radobobo@users.sourceforge.net> @@ -39,7 +39,7 @@ const struct cmd_entry cmd_capture_pane_entry = { .name = "capture-pane", .alias = "capturep", - .args = { "ab:CeE:JNpPqS:t:", 0, 0, NULL }, + .args = { "ab:CeE:JNpPqS:Tt:", 0, 0, NULL }, .usage = "[-aCeJNpPqT] " CMD_BUFFER_USAGE " [-E end-line] " "[-S start-line] " CMD_TARGET_PANE_USAGE, |