diff options
author | 2019-11-15 11:21:32 +0000 | |
---|---|---|
committer | 2019-11-15 11:21:32 +0000 | |
commit | a467abc7265f04ab39e13f80ed569dca563c67c3 (patch) | |
tree | 6e554c64260019d2b539ed79facf8219d2a724d0 /usr.bin/tmux/input.c | |
parent | Handle OSC 7 (a VTE extension) and put the result in a new format (pane_path). (diff) | |
download | wireguard-openbsd-a467abc7265f04ab39e13f80ed569dca563c67c3.tar.xz wireguard-openbsd-a467abc7265f04ab39e13f80ed569dca563c67c3.zip |
Do not add path if it is NULL, duh.
Diffstat (limited to 'usr.bin/tmux/input.c')
-rw-r--r-- | usr.bin/tmux/input.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/tmux/input.c b/usr.bin/tmux/input.c index 41a0b5c9d70..c1193114ba4 100644 --- a/usr.bin/tmux/input.c +++ b/usr.bin/tmux/input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: input.c,v 1.165 2019/11/15 11:16:53 nicm Exp $ */ +/* $OpenBSD: input.c,v 1.166 2019/11/15 11:21:32 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -132,7 +132,6 @@ static void input_set_state(struct window_pane *, static void input_reset_cell(struct input_ctx *); static void input_osc_4(struct input_ctx *, const char *); -static void input_osc_7(struct input_ctx *, const char *); static void input_osc_10(struct input_ctx *, const char *); static void input_osc_11(struct input_ctx *, const char *); static void input_osc_52(struct input_ctx *, const char *); |