diff options
| author | Po Lu | 2023-07-16 17:29:58 +0800 |
|---|---|---|
| committer | Po Lu | 2023-07-16 17:29:58 +0800 |
| commit | 64256d29234b0fc3012d07cb189ebeccc2dfc187 (patch) | |
| tree | 0a9d6d3a069a18d54657822ff8a1618cffdcf976 /src | |
| parent | 7b346b92b4c30c634d094e6162b65a22a52b93bb (diff) | |
| download | emacs-64256d29234b0fc3012d07cb189ebeccc2dfc187.tar.gz emacs-64256d29234b0fc3012d07cb189ebeccc2dfc187.zip | |
Update Android port
* doc/lispref/commands.texi (Touchscreen Events): Improve
documentation.
* lisp/tab-bar.el (tab-bar-map): Bind `[tab-bar
touchscreen-hold]'.
* lisp/touch-screen.el (touch-screen-hold, touch-screen-drag):
New functions.
(touch-screen-handle-timeout): Generate a `touchscreen-hold'
event instead.
(touch-screen-handle-point-update): Generate a
`touchscreen-drag' event upon dragging.
(touch-screen-translate-touch): Cancel touch screen timer upon
exit.
* src/keyboard.c (access_keymap_keyremap): Take unsigned int
start and end instead.
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index e10128def13..fa5eea31c3b 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -10001,7 +10001,7 @@ typedef struct keyremap | |||
| 10001 | 10001 | ||
| 10002 | static Lisp_Object | 10002 | static Lisp_Object |
| 10003 | access_keymap_keyremap (Lisp_Object map, Lisp_Object key, Lisp_Object prompt, | 10003 | access_keymap_keyremap (Lisp_Object map, Lisp_Object key, Lisp_Object prompt, |
| 10004 | bool do_funcall, ptrdiff_t start, ptrdiff_t end, | 10004 | bool do_funcall, unsigned int start, unsigned int end, |
| 10005 | Lisp_Object *keybuf) | 10005 | Lisp_Object *keybuf) |
| 10006 | { | 10006 | { |
| 10007 | Lisp_Object next; | 10007 | Lisp_Object next; |