Function: epa-read-file-name

epa-read-file-name is a byte-compiled function defined in epa.el.gz.

Signature

(epa-read-file-name INPUT)

Documentation

Interactively read an output file name based on INPUT file name.

Source Code

;; Defined in /usr/src/emacs/lisp/epa.el.gz
(defun epa-read-file-name (input)
  "Interactively read an output file name based on INPUT file name."
  (setq input (file-name-sans-extension (expand-file-name input)))
  (expand-file-name
   (read-file-name
    (concat "To file (default " (file-name-nondirectory input) ") ")
    (file-name-directory input)
    input)))