Function: recentf-track-closed-file

recentf-track-closed-file is a byte-compiled function defined in recentf.el.gz.

Signature

(recentf-track-closed-file)

Documentation

Update the recent list when a buffer is killed.

That is, remove a non kept file from the recent list.

Source Code

;; Defined in /usr/src/emacs/lisp/recentf.el.gz
(defun recentf-track-closed-file ()
  "Update the recent list when a buffer is killed.
That is, remove a non kept file from the recent list."
  (and buffer-file-name
       (recentf-remove-if-non-kept buffer-file-name)))