Function: recentf-expand-file-name

recentf-expand-file-name is a byte-compiled function defined in recentf.el.gz.

Signature

(recentf-expand-file-name NAME)

Documentation

Convert file NAME to absolute, and canonicalize it.

NAME is first passed to the function expand-file-name, then to recentf-filename-handlers to post process it.

Source Code

;; Defined in /usr/src/emacs/lisp/recentf.el.gz
(defun recentf-expand-file-name (name)
  "Convert file NAME to absolute, and canonicalize it.
NAME is first passed to the function `expand-file-name', then to
`recentf-filename-handlers' to post process it."
  (let ((non-essential t))
    (recentf-apply-filename-handlers (expand-file-name name))))