diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2022-05-30 12:52:03 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2022-05-30 12:52:03 +0000 |
commit | 8b8765d45aa335a51b14483f19fc6ef34a3a341d (patch) | |
tree | 86d7226265df9f2f5d9051e128170ac545edfd45 /usr.bin/tmux/tmux.h | |
parent | 47bffbee0144b96f5e60f07a00bc8f07ca0adc53 (diff) |
Better error reporting when applying custom layouts.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 9cf1a6160b3..a54dc95888d 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.1167 2022/05/30 12:48:57 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.1168 2022/05/30 12:52:02 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -3018,7 +3018,7 @@ void layout_spread_out(struct window_pane *); /* layout-custom.c */ char *layout_dump(struct layout_cell *); -int layout_parse(struct window *, const char *); +int layout_parse(struct window *, const char *, char **); /* layout-set.c */ int layout_set_lookup(const char *); |