Function: epa-unmark-key

epa-unmark-key is an interactive and byte-compiled function defined in epa.el.gz.

Signature

(epa-unmark-key &optional ARG)

Documentation

Unmark a key on the current line.

If ARG is non-nil, mark the key.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/epa.el.gz
(defun epa-unmark-key (&optional arg)
  "Unmark a key on the current line.
If ARG is non-nil, mark the key."
  (interactive "P")
  (epa-mark-key (not arg)))