Function: epa-ks-mark-key-to-fetch

epa-ks-mark-key-to-fetch is an interactive and byte-compiled function defined in epa-ks.el.gz.

Signature

(epa-ks-mark-key-to-fetch TAG)

Documentation

Add fetch-mark to key under point.

If a region is active, mark all keys in active region.

When all keys have been selected, use M-x epa-ks-do-key-to-fetch (epa-ks-do-key-to-fetch) to actually import the keys.

When called interactively, epa-ks-mark-key-to-fetch will always add a "F" tag. Non-interactivly the tag must be specified by setting the TAG parameter.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/epa-ks.el.gz
(defun epa-ks-mark-key-to-fetch (tag)
  "Add fetch-mark to key under point.

If a region is active, mark all keys in active region.

When all keys have been selected, use \\[epa-ks-do-key-to-fetch] to
actually import the keys.

When called interactively, `epa-ks-mark-key-to-fetch' will always
add a \"F\" tag.  Non-interactivly the tag must be specified by
setting the TAG parameter."
  (interactive (list "F"))
  (if (region-active-p)
      (save-mark-and-excursion
        (save-restriction
          (narrow-to-region (region-beginning) (1- (region-end)))
          (goto-char (point-min))
          (while (not (eobp))
            (tabulated-list-put-tag tag t))))
    (tabulated-list-put-tag tag t)))