summaryrefslogtreecommitdiff
path: root/lisp/recentf.el
diff options
context:
space:
mode:
authorDavid Ponce <david@dponce.com>2005-12-15 20:23:46 +0000
committerDavid Ponce <david@dponce.com>2005-12-15 20:23:46 +0000
commita07efa9f7cd227e55bd7c151997e1744d5f8ef0c (patch)
tree349f283cb4fee414e711c0aae7784c05c9de3d83 /lisp/recentf.el
parentd0ccae3ee4e6967504062094f735fba27f6d9db3 (diff)
downloademacs-a07efa9f7cd227e55bd7c151997e1744d5f8ef0c.tar.gz
emacs-a07efa9f7cd227e55bd7c151997e1744d5f8ef0c.tar.bz2
emacs-a07efa9f7cd227e55bd7c151997e1744d5f8ef0c.zip
(recentf-dialog-goto-first): Fix missing error condition.
(recentf-edit-list, recentf-open-files): Signal an error when there is no recent file.
Diffstat (limited to 'lisp/recentf.el')
-rw-r--r--lisp/recentf.el7
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/recentf.el b/lisp/recentf.el
index d92bc92f6ee..1106fea18b6 100644
--- a/lisp/recentf.el
+++ b/lisp/recentf.el
@@ -1038,7 +1038,8 @@ Go to the beginning of buffer if not found."
(if (eq widget-type (widget-type (widget-at (point))))
(setq done t)
(widget-move 1))))
- (goto-char (point-min))))
+ (error
+ (goto-char (point-min)))))
(defvar recentf-dialog-mode-map
(let ((km (copy-keymap recentf--shortcuts-keymap)))
@@ -1100,6 +1101,8 @@ IGNORE arguments."
(defun recentf-edit-list ()
"Show a dialog to delete selected files from the recent list."
(interactive)
+ (unless recentf-list
+ (error "The list of recent files is empty"))
(recentf-dialog (format "*%s - Edit list*" recentf-menu-title)
(set (make-local-variable 'recentf-edit-list) nil)
(widget-insert
@@ -1194,6 +1197,8 @@ files to choose from. It defaults to the whole recent list.
If optional argument BUFFER-NAME is non-nil, it is a buffer name to
use for the dialog. It defaults to \"*`recentf-menu-title'*\"."
(interactive)
+ (unless (or files recentf-list)
+ (error "There is no recent file to open"))
(recentf-dialog (or buffer-name (format "*%s*" recentf-menu-title))
(widget-insert "Click on a file"
(if recentf-show-file-shortcuts-flag