]> git.eshelyaron.com Git - emacs.git/commitdiff
* xfns.c (Fx_backspace_delete_keys_p): Added comment about the
authorJan Djärv <jan.h.d@swipnet.se>
Mon, 7 Feb 2005 12:50:38 +0000 (12:50 +0000)
committerJan Djärv <jan.h.d@swipnet.se>
Mon, 7 Feb 2005 12:50:38 +0000 (12:50 +0000)
reason for the approach in the code.

src/ChangeLog
src/xfns.c

index 4ca3ed7b56b6b1bd3c0268f396023be36bec853c..2f42beb74c3458162f117c44cfc92d2bcda1217d 100644 (file)
@@ -1,3 +1,8 @@
+2005-02-07  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
+
+       * xfns.c (Fx_backspace_delete_keys_p): Added comment about the
+       reason for the approach in the code.
+
 2005-02-07  Kim F. Storm  <storm@cua.dk>
 
        * undo.c (Fprimitive_undo): Record max one dummmy apply element.
index c0461d8c7a93ae1ed33499cf12efba0f36b7dd61..bc9b4a5c9936b631fd620796edd94f93b24522b7 100644 (file)
@@ -5403,6 +5403,22 @@ usual X keysyms.  */)
       return Qnil;
     }
 
+  /* In this code we check that the keyboard has physical keys with names
+     that start with BKSP (Backspace) and DELE (Delete), and that they
+     generate keysym XK_BackSpace and XK_Delete respectively.
+     This function is used to test if normal-erase-is-backspace should be
+     turned on.
+     An alternative approach would be to just check if XK_BackSpace and
+     XK_Delete are mapped to any key.  But if any of those are mapped to
+     some non-intuitive key combination (Meta-Shift-Ctrl-whatever) and the
+     user doesn't know about it, it is better to return false here.
+     It is more obvious to the user what to do if she/he has two keys
+     clearly marked with names/symbols and one key does something not
+     expected (i.e. she/he then tries the other).
+     The cases where Backspace/Delete is mapped to some other key combination
+     are rare, and in those cases, normal-erase-is-backspace can be turned on
+     manually.  */
+
   have_keys = Qnil;
   kb = XkbGetMap (dpy, XkbAllMapComponentsMask, XkbUseCoreKbd);
   if (kb)