Function: recentf-cancel-dialog

recentf-cancel-dialog is an interactive and byte-compiled function defined in recentf.el.gz.

Signature

(recentf-cancel-dialog &rest IGNORE)

Documentation

Cancel the current dialog.

IGNORE arguments.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/recentf.el.gz
;;; Commands
;;

;;; Common dialog stuff
;;
(defun recentf-cancel-dialog (&rest _ignore)
  "Cancel the current dialog.
IGNORE arguments."
  (interactive nil recentf-dialog-mode)
  (kill-buffer (current-buffer))
  (message "Dialog canceled"))