mirror of
https://github.com/tmux/tmux.git
synced 2025-09-03 06:17:04 +00:00
Merge branch 'obsd-master'
This commit is contained in:
@ -30,7 +30,7 @@
|
||||
* direction with output).
|
||||
*/
|
||||
|
||||
void input_key_mouse(struct window_pane *, struct mouse_event *);
|
||||
static void input_key_mouse(struct window_pane *, struct mouse_event *);
|
||||
|
||||
struct input_key_ent {
|
||||
key_code key;
|
||||
@ -41,7 +41,7 @@ struct input_key_ent {
|
||||
#define INPUTKEY_CURSOR 0x2 /* cursor key */
|
||||
};
|
||||
|
||||
const struct input_key_ent input_keys[] = {
|
||||
static const struct input_key_ent input_keys[] = {
|
||||
/* Backspace key. */
|
||||
{ KEYC_BSPACE, "\177", 0 },
|
||||
|
||||
@ -231,7 +231,7 @@ input_key(struct window_pane *wp, key_code key, struct mouse_event *m)
|
||||
}
|
||||
|
||||
/* Translate mouse and output. */
|
||||
void
|
||||
static void
|
||||
input_key_mouse(struct window_pane *wp, struct mouse_event *m)
|
||||
{
|
||||
char buf[40];
|
||||
|
Reference in New Issue
Block a user