aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/term
diff options
context:
space:
mode:
authorPo Lu2024-06-13 10:46:59 +0800
committerPo Lu2024-06-13 10:46:59 +0800
commit94bcd7964bbb20bc8ff8a91a9656452a97139d60 (patch)
tree951aea98a335493cbd0f1d52cd72c9ed02f85cf6 /lisp/term
parent6b7ff60a5e71c161a064e27509fe4fb95cf74ddd (diff)
downloademacs-94bcd7964bbb20bc8ff8a91a9656452a97139d60.tar.gz
emacs-94bcd7964bbb20bc8ff8a91a9656452a97139d60.zip
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.
Diffstat (limited to 'lisp/term')
-rw-r--r--lisp/term/android-win.el3
1 files changed, 0 insertions, 3 deletions
diff --git a/lisp/term/android-win.el b/lisp/term/android-win.el
index 0d2d0299282..3e0f71abf91 100644
--- a/lisp/term/android-win.el
+++ b/lisp/term/android-win.el
@@ -627,9 +627,6 @@ accessible to other programs."
627(global-set-key [\83] #'ignore) ; KEYCODE_NOTIFICATION on pre-Honeycomb 627(global-set-key [\83] #'ignore) ; KEYCODE_NOTIFICATION on pre-Honeycomb
628 ; releases. 628 ; releases.
629 629
630;; `select' key, which I suppose amounts to return.
631(define-key input-decode-map [select] [return])
632
633 630
634(provide 'android-win) 631(provide 'android-win)
635;; android-win.el ends here. 632;; android-win.el ends here.