Function: epa--insert-keys

epa--insert-keys is a byte-compiled function defined in epa.el.gz.

Signature

(epa--insert-keys KEYS)

Source Code

;; Defined in /usr/src/emacs/lisp/epa.el.gz
;;;; Listing and Selecting

(defun epa--insert-keys (keys)
  (dolist (key keys)
    (insert
     (propertize
      (concat "  " (epa--button-key-text key))
      'epa-key key
      ;; Allow TAB to tab to the key.
      'button t
      'category t))
    (insert "\n")))