diff options
author | 2007-11-08 15:01:36 -0500 | |
---|---|---|
committer | 2007-11-08 15:01:36 -0500 | |
commit | 0853e00683b88605ba19598de2389bd391e0e9eb (patch) | |
tree | ca065f21dbc11e6a766cb8aeb1fd22ba05b81fc0 /src/textadept.h | |
parent | f112c01cd195685b2dfa9758e9d34b4444fe4926 (diff) | |
download | textadept-0853e00683b88605ba19598de2389bd391e0e9eb.tar.gz textadept-0853e00683b88605ba19598de2389bd391e0e9eb.zip |
Moved GTK/GDK keypress mask logic from lua_interface.c to textadept.c.
Diffstat (limited to 'src/textadept.h')
-rw-r--r-- | src/textadept.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/textadept.h b/src/textadept.h index 1b4344e9..af53d0f9 100644 --- a/src/textadept.h +++ b/src/textadept.h @@ -69,7 +69,7 @@ void l_set_buffer_global(ScintillaObject *sci); void l_handle_error(lua_State *lua, const char *errmsg=0); bool l_handle_event(const char *e); bool l_handle_event(const char *e, const char *arg); -bool l_handle_keypress(int keyval, GdkEventKey *event); +bool l_handle_keypress(int keyval, bool shift, bool control, bool alt); void l_handle_scnnotification(SCNotification *n); void l_ta_command(const char *command); |