1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

Correctly define `select' binding on Android

* lisp/term/android-win.el (input-decode-map): Cease binding
select in the initial frame's input-decode-map.

* src/androidterm.c (android_term_init): Binding select in the
freshly created kboard.
(syms_of_androidterm) <Qselect, Qreturn>: New symbols.
This commit is contained in:
Po Lu 2024-06-13 10:46:59 +08:00
parent 6b7ff60a5e
commit 94bcd7964b
2 changed files with 13 additions and 5 deletions

View file

@ -627,9 +627,6 @@ accessible to other programs."
(global-set-key [\83] #'ignore) ; KEYCODE_NOTIFICATION on pre-Honeycomb
; releases.
;; `select' key, which I suppose amounts to return.
(define-key input-decode-map [select] [return])
(provide 'android-win)
;; android-win.el ends here.