about summary refs log tree commit diff stats
path: root/log_browser.lua
diff options
context:
space:
mode:
Diffstat (limited to 'log_browser.lua')
-rw-r--r--log_browser.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/log_browser.lua b/log_browser.lua
index 91f02eb..76596f2 100644
--- a/log_browser.lua
+++ b/log_browser.lua
@@ -194,7 +194,7 @@ end
 function log_browser.quit(State)
 end
 
-function log_browser.mouse_pressed(State, x,y, mouse_button)
+function log_browser.mouse_press(State, x,y, mouse_button)
   local line_index = log_browser.line_index(State, x,y)
   if line_index == nil then
     -- below lower margin
@@ -262,13 +262,13 @@ function log_browser.line_index(State, mx,my)
   end
 end
 
-function log_browser.mouse_released(State, x,y, mouse_button)
+function log_browser.mouse_release(State, x,y, mouse_button)
 end
 
-function log_browser.textinput(State, t)
+function log_browser.text_input(State, t)
 end
 
-function log_browser.keychord_pressed(State, chord, key)
+function log_browser.keychord_press(State, chord, key)
   -- move
   if chord == 'up' then
     while State.screen_top1.line > 1 do
@@ -319,5 +319,5 @@ function log_browser.height(State, line_index)
   end
 end
 
-function log_browser.keyreleased(State, key, scancode)
+function log_browser.key_release(State, key, scancode)
 end