aboutsummaryrefslogtreecommitdiffstats
path: root/src/keyboard.c
diff options
context:
space:
mode:
authorJan Djärv2003-03-09 20:43:04 +0000
committerJan Djärv2003-03-09 20:43:04 +0000
commit257f40f26707cf9aa825b16c19d601a71bf27d66 (patch)
treea44ba2d64baa024327666df9eb5a63354c7adb0c /src/keyboard.c
parent3a8a22fc3d5817b031cb40febeb000bf33d80a60 (diff)
downloademacs-257f40f26707cf9aa825b16c19d601a71bf27d66.tar.gz
emacs-257f40f26707cf9aa825b16c19d601a71bf27d66.zip
Implement Ctrl-Mouse-2 (split vertically) for toolkit scrollbars
Diffstat (limited to 'src/keyboard.c')
-rw-r--r--src/keyboard.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 86fdb9a0c40..11e3980324f 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -5431,6 +5431,9 @@ make_lispy_event (event)
5431 event->modifiers |= click_modifier; 5431 event->modifiers |= click_modifier;
5432 event->modifiers &= ~up_modifier; 5432 event->modifiers &= ~up_modifier;
5433 5433
5434 if (event->code >= ASIZE (mouse_syms))
5435 mouse_syms = larger_vector (mouse_syms, event->code + 1, Qnil);
5436
5434 /* Get the symbol we should use for the mouse click. */ 5437 /* Get the symbol we should use for the mouse click. */
5435 head = modify_event_symbol (event->code, 5438 head = modify_event_symbol (event->code,
5436 event->modifiers, 5439 event->modifiers,