diff options
author | 2012-12-09 23:17:35 +0000 | |
---|---|---|
committer | 2012-12-09 23:17:35 +0000 | |
commit | 358e93e4f61688a925077add9b49ae7b3b58a472 (patch) | |
tree | 8f1c531cad051ca5801b6d8b2e314adddd1273f7 /usr.bin/tmux/cmd-send-keys.c | |
parent | clarify that changes to this module were not done by intel (diff) | |
download | wireguard-openbsd-358e93e4f61688a925077add9b49ae7b3b58a472.tar.xz wireguard-openbsd-358e93e4f61688a925077add9b49ae7b3b58a472.zip |
Use the CMD_*_USAGE defines consistently, from Thomas Adam.
Diffstat (limited to 'usr.bin/tmux/cmd-send-keys.c')
-rw-r--r-- | usr.bin/tmux/cmd-send-keys.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/cmd-send-keys.c b/usr.bin/tmux/cmd-send-keys.c index b99f99bd339..e833191e3c8 100644 --- a/usr.bin/tmux/cmd-send-keys.c +++ b/usr.bin/tmux/cmd-send-keys.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-send-keys.c,v 1.12 2012/07/11 07:10:15 nicm Exp $ */ +/* $OpenBSD: cmd-send-keys.c,v 1.13 2012/12/09 23:17:35 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net> @@ -32,7 +32,7 @@ enum cmd_retval cmd_send_keys_exec(struct cmd *, struct cmd_ctx *); const struct cmd_entry cmd_send_keys_entry = { "send-keys", "send", "lRt:", 0, -1, - "[-lR] [-t target-pane] key ...", + "[-lR] " CMD_TARGET_PANE_USAGE " key ...", 0, NULL, NULL, |