Function: help-fns--insert-bindings

help-fns--insert-bindings is a byte-compiled function defined in help-fns.el.gz.

Signature

(help-fns--insert-bindings KEYS)

Source Code

;; Defined in /usr/src/emacs/lisp/help-fns.el.gz
(defun help-fns--insert-bindings (keys)
  (seq-do-indexed (lambda (key i)
                    (insert
                     (cond ((zerop i) "")
                           ((= i (1- (length keys))) " and ")
                           (t ", ")))
                    (insert (help--key-description-fontified key)))
                  keys))