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

Minor revisions to Android key bindings

* etc/PROBLEMS (Runtime problems specific to Android): Document
inappropriate generation of F3 on certain systems.

* lisp/bindings.el ([iconify-frame], [make-frame-visible]):
Update references to long-obsolete ignore-event command.

* lisp/term/android-win.el ([KEYCODE_NOTIFICATION], [\83]):
Ignore these two nuisance keys by default.
This commit is contained in:
Po Lu 2024-06-10 15:37:58 +08:00
parent d6ecabe23b
commit b7b43931ee
3 changed files with 21 additions and 4 deletions

View file

@ -978,9 +978,8 @@ language you are using."
;; It seems that they can't because they're handled via
;; special-event-map which is used at very low-level. -stef
(global-set-key [delete-frame] 'handle-delete-frame)
(global-set-key [iconify-frame] 'ignore-event)
(global-set-key [make-frame-visible] 'ignore-event)
(global-set-key [iconify-frame] 'ignore)
(global-set-key [make-frame-visible] 'ignore)
;These commands are defined in editfns.c
;but they are not assigned to keys there.