Function: which-key--replace-in-repl-list-many

which-key--replace-in-repl-list-many is a byte-compiled function defined in which-key.el.gz.

Signature

(which-key--replace-in-repl-list-many KEY-BINDING REPLS)

Source Code

;; Defined in /usr/src/emacs/lisp/which-key.el.gz
(defun which-key--replace-in-repl-list-many (key-binding repls)
  (let (found)
    (dolist (repl repls)
      (when (which-key--match-replacement key-binding repl)
        (setq found t)
        (setq key-binding (which-key--replace-in-binding key-binding repl))))
    (when found `(replaced . ,key-binding))))