Function: recentf-digit-shortcut-command-name
recentf-digit-shortcut-command-name is a byte-compiled function
defined in recentf.el.gz.
Signature
(recentf-digit-shortcut-command-name N)
Documentation
Return a command name to open the Nth most recent file.
See also the command recentf-open-most-recent-file.
Source Code
;; Defined in /usr/src/emacs/lisp/recentf.el.gz
;;; Menu building
;;
(defsubst recentf-digit-shortcut-command-name (n)
"Return a command name to open the Nth most recent file.
See also the command `recentf-open-most-recent-file'."
(intern (format "recentf-open-most-recent-file-%d" n)))