Function: lookup-key-ignore-too-long

lookup-key-ignore-too-long is a byte-compiled function defined in menu-bar.el.gz.

Signature

(lookup-key-ignore-too-long MAP KEY)

Documentation

Call lookup-key and convert numeric values to nil.

Source Code

;; Defined in /usr/src/emacs/lisp/menu-bar.el.gz
(defun lookup-key-ignore-too-long (map key)
  "Call `lookup-key' and convert numeric values to nil."
  (let ((binding (lookup-key map key)))
    (if (numberp binding)       ; `too long'
        nil
      binding)))