summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/tmux.h
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2021-01-20 07:16:54 +0000
committernicm <nicm@openbsd.org>2021-01-20 07:16:54 +0000
commitb1a381546f9dc2215d80971fa40bd4aad7153408 (patch)
tree6e38fdfd3284967cbc6e00abd14535c9c6d6cfd3 /usr.bin/tmux/tmux.h
parentDrop unneeded cast in seal_record_protected_cipher (diff)
downloadwireguard-openbsd-b1a381546f9dc2215d80971fa40bd4aad7153408.tar.xz
wireguard-openbsd-b1a381546f9dc2215d80971fa40bd4aad7153408.zip
Change so that window_flags escapes # automatically which means configs
will not have to change. A new format window_raw_flags contains the old unescaped version.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r--usr.bin/tmux/tmux.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h
index e82bd5257ba..7617811f855 100644
--- a/usr.bin/tmux/tmux.h
+++ b/usr.bin/tmux/tmux.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: tmux.h,v 1.1085 2021/01/18 10:27:54 nicm Exp $ */
+/* $OpenBSD: tmux.h,v 1.1086 2021/01/20 07:16:54 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -2761,7 +2761,7 @@ int window_pane_key(struct window_pane *, struct client *,
int window_pane_visible(struct window_pane *);
u_int window_pane_search(struct window_pane *, const char *, int,
int);
-const char *window_printable_flags(struct winlink *);
+const char *window_printable_flags(struct winlink *, int);
struct window_pane *window_pane_find_up(struct window_pane *);
struct window_pane *window_pane_find_down(struct window_pane *);
struct window_pane *window_pane_find_left(struct window_pane *);