]> git.eshelyaron.com Git - emacs.git/commitdiff
Filter out NS non-key events from `where-is-internal'
authorLars Ingebrigtsen <larsi@gnus.org>
Sat, 18 Jun 2022 12:06:00 +0000 (14:06 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Sat, 18 Jun 2022 12:06:30 +0000 (14:06 +0200)
* doc/lispref/keymaps.texi (Scanning Keymaps): Document it.
* lisp/keymap.el (make-non-key-event): New function.

* lisp/term/common-win.el (x-setup-function-keys): Mark ns events
as not being keys (bug#55940).

* src/keymap.c (Fwhere_is_internal): Filter out key sequences that
are marked as being non-keys.

doc/lispref/keymaps.texi
etc/NEWS
lisp/keymap.el
lisp/term/common-win.el
src/keymap.c
test/src/keymap-tests.el

index a037c228f1387e8e12c7f059911307a0077e3016..a27b0ea366ccb59e9cb66ce99184c1aa9c8fed7b 100644 (file)
@@ -2209,6 +2209,11 @@ If @var{no-remap} is @code{nil}, return the bindings for
 non-@code{nil}, return the bindings for @var{command}, ignoring the
 fact that it is remapped.
 @end table
+
+If a command maps to a key binding like @code{[some-event]}, and
+@code{some-event} has a symbol plist containing a non-@code{nil}
+@code{non-key-event} property, then that binding is ignored by
+@code{where-is-internal}.
 @end defun
 
 @deffn Command describe-bindings &optional prefix buffer-or-name
index a9c8957dfbb1768d038cb12d0ca57ad48f7abfbe..438cec9257f683b14f7473d4195ebdf7f4801e80 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -2363,6 +2363,12 @@ option.
 
 ** Keymaps and key definitions
 
++++
+*** 'where-is-internal' can now filter events marked as non key events.
+If a command maps to a key binding like [some-event], and 'some-event'
+has a symbol plist containing a non-nil 'non-key-event' property, then
+that binding is ignored by 'where-is-internal'.
+
 +++
 *** New functions for defining and manipulating keystrokes.
 These all take the syntax defined by 'key-valid-p'.  None of the older
index 3a22610499c36cb3e62a4956bbdab24237c0c6a8..ad7d4fbbba1113d2f0707e0a346410fda91c535d 100644 (file)
@@ -575,6 +575,11 @@ as the variable documentation string.
        (define-keymap ,@(nreverse opts) ,@defs)
        ,@(and doc (list doc)))))
 
+(defun make-non-key-event (symbol)
+  "Mark SYMBOL as an event that shouldn't be returned from `where-is'."
+  (put symbol 'non-key-event t)
+  symbol)
+
 (provide 'keymap)
 
 ;;; keymap.el ends here
index 6f1e322aba556cea931f630dd40604829942c1ff..f7faba9cb7ca9fc093e0d28a565191355c0a469f 100644 (file)
        (setq system-key-alist
              (list
               ;; These are special "keys" used to pass events from C to lisp.
-              (cons  1 'ns-power-off)
-              (cons  2 'ns-open-file)
-              (cons  3 'ns-open-temp-file)
-              (cons  4 'ns-drag-file)
-              (cons  5 'ns-drag-color)
-              (cons  6 'ns-drag-text)
-              (cons  8 'ns-open-file-line)
-;;;           (cons  9 'ns-insert-working-text)
-;;;           (cons 10 'ns-delete-working-text)
-              (cons 11 'ns-spi-service-call)
-              (cons 12 'ns-new-frame)
-              (cons 13 'ns-toggle-toolbar)
-              (cons 14 'ns-show-prefs)
-              ))))
+              (cons  1 (make-non-key-event 'ns-power-off))
+              (cons  2 (make-non-key-event 'ns-open-file))
+              (cons  3 (make-non-key-event 'ns-open-temp-file))
+              (cons  4 (make-non-key-event 'ns-drag-file))
+              (cons  5 (make-non-key-event 'ns-drag-color))
+              (cons  6 (make-non-key-event 'ns-drag-text))
+              (cons  8 (make-non-key-event 'ns-open-file-line))
+;;;           (cons  9 (make-non-key-event 'ns-insert-working-text))
+;;;           (cons 10 (make-non-key-event 'ns-delete-working-text))
+              (cons 11 (make-non-key-event 'ns-spi-service-call))
+              (cons 12 (make-non-key-event 'ns-new-frame))
+              (cons 13 (make-non-key-event 'ns-toggle-toolbar))
+              (cons 14 (make-non-key-event 'ns-show-prefs))))))
     (set-terminal-parameter frame 'x-setup-function-keys t)))
 
 (defvar x-invocation-args)
index c8b01eed6fd729b8b018f6661b71d20c5e1ac4e5..2b77a7fc444c401da698a8b7269169c2d77e483b 100644 (file)
@@ -2596,7 +2596,10 @@ The optional 5th arg NO-REMAP alters how command remapping is handled:
 
 - If DEFINITION is remapped to OTHER-COMMAND, normally return the
   bindings for OTHER-COMMAND.  But if NO-REMAP is non-nil, return the
-  bindings for DEFINITION instead, ignoring its remapping.  */)
+  bindings for DEFINITION instead, ignoring its remapping.
+
+Keys that are represented as events that have a `non-key-event' non-nil
+symbol property are ignored.  */)
   (Lisp_Object definition, Lisp_Object keymap, Lisp_Object firstonly, Lisp_Object noindirect, Lisp_Object no_remap)
 {
   /* The keymaps in which to search.  */
@@ -2720,7 +2723,12 @@ The optional 5th arg NO-REMAP alters how command remapping is handled:
 
       /* It is a true unshadowed match.  Record it, unless it's already
         been seen (as could happen when inheriting keymaps).  */
-      if (NILP (Fmember (sequence, found)))
+      if (NILP (Fmember (sequence, found))
+         /* Filter out non key events.  */
+         && !(VECTORP (sequence)
+              && ASIZE (sequence) == 1
+              && SYMBOLP (AREF (sequence, 0))
+              && !NILP (Fget (AREF (sequence, 0), Qnon_key_event))))
        found = Fcons (sequence, found);
 
       /* If firstonly is Qnon_ascii, then we can return the first
@@ -3461,4 +3469,6 @@ that describe key bindings.  That is why the default is nil.  */);
 
   DEFSYM (Qkey_parse, "key-parse");
   DEFSYM (Qkey_valid_p, "key-valid-p");
+
+  DEFSYM (Qnon_key_event, "non-key-event");
 }
index 69aa7238493c17f1f133be4b7cb135f60eebc589..eeac1dbe6d1a3f311d747541e1b8cba42d64ced1 100644 (file)
@@ -418,6 +418,16 @@ g .. h             foo
   (should-error (text-char-description ?\M-c))
   (should-error (text-char-description ?\s-c)))
 
+(ert-deftest test-non-key-events ()
+  (should (null (where-is-internal 'keymap-tests-command)))
+  (keymap-set global-map "C-c g" #'keymap-tests-command)
+  (should (equal (where-is-internal 'keymap-tests-command) '([3 103])))
+  (keymap-set global-map "<keymap-tests-event>" #'keymap-tests-command)
+  (should (equal (where-is-internal 'keymap-tests-command)
+                 '([keymap-tests-event] [3 103])))
+  (make-non-key-event 'keymap-tests-event)
+  (should (equal (where-is-internal 'keymap-tests-command) '([3 103]))))
+
 (provide 'keymap-tests)
 
 ;;; keymap-tests.el ends here