diff options
author | Thomas Adam <thomas@xteddy.org> | 2016-09-12 18:01:12 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2016-09-12 18:01:12 +0100 |
commit | a5b29a1250c321d08b227120b4d9e835297e7acd (patch) | |
tree | b9324a9c18be232633b9e8ba6ae749e95178dad3 /tmux.h | |
parent | 060515684dd2f3d471cc801920495426368b6ecf (diff) | |
parent | 2e5584c2b41df1c1b836c3229ea78f8ea3d81054 (diff) | |
download | rtmux-a5b29a1250c321d08b227120b4d9e835297e7acd.tar.gz rtmux-a5b29a1250c321d08b227120b4d9e835297e7acd.tar.bz2 rtmux-a5b29a1250c321d08b227120b4d9e835297e7acd.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -568,6 +568,7 @@ struct mode_key_data { /* Binding between a key and a command. */ struct mode_key_binding { key_code key; + u_int repeat; int mode; enum mode_key_cmd cmd; @@ -1635,7 +1636,7 @@ const struct mode_key_table *mode_key_findtable(const char *); void mode_key_init_trees(void); void mode_key_init(struct mode_key_data *, struct mode_key_tree *); enum mode_key_cmd mode_key_lookup(struct mode_key_data *, key_code, - const char **); + const char **, u_int *); /* notify.c */ void notify_enable(void); |