]> git.eshelyaron.com Git - emacs.git/commitdiff
Enable normal-erase-is-backspace on Android
authorPo Lu <luangruo@yahoo.com>
Fri, 24 Feb 2023 13:22:47 +0000 (21:22 +0800)
committerPo Lu <luangruo@yahoo.com>
Fri, 24 Feb 2023 13:22:47 +0000 (21:22 +0800)
* lisp/frame.el (display-symbol-keys-p):
* lisp/simple.el (normal-erase-is-backspace-setup-frame): Return
appropriate values on Android.

lisp/frame.el
lisp/simple.el

index 3fd8dbbdc36c6a232171664917427ff8095b5f54..3e28a22d469a033a3068411fa8eb0f509d5f893e 100644 (file)
@@ -2217,7 +2217,7 @@ frame's display)."
 This means that, for example, DISPLAY can differentiate between
 the keybinding RET and [return]."
   (let ((frame-type (framep-on-display display)))
-    (or (memq frame-type '(x w32 ns pc pgtk haiku))
+    (or (memq frame-type '(x w32 ns pc pgtk haiku android))
         ;; MS-DOS and MS-Windows terminals have built-in support for
         ;; function (symbol) keys
         (memq system-type '(ms-dos windows-nt)))))
index 1194c368ba136bcf3b84ceaf45a929171e7222b5..b265113048af331a8a8b7e49203d3a142774b144 100644 (file)
@@ -10454,7 +10454,7 @@ call `normal-erase-is-backspace-mode' (which see) instead."
        (if (if (eq normal-erase-is-backspace 'maybe)
                (and (not noninteractive)
                     (or (memq system-type '(ms-dos windows-nt))
-                       (memq window-system '(w32 ns pgtk haiku))
+                       (memq window-system '(w32 ns pgtk haiku android))
                         (and (eq window-system 'x)
                              (fboundp 'x-backspace-delete-keys-p)
                              (x-backspace-delete-keys-p))