Mercurial > emacs
changeset 63416:ed3a1f593d3c
(url-completion-function): Follow error conventions.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Tue, 14 Jun 2005 15:07:56 +0000 |
parents | 3ed17f92f3c9 |
children | b7f8d1563670 |
files | lisp/url/url-history.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/url/url-history.el Tue Jun 14 14:34:40 2005 +0000 +++ b/lisp/url/url-history.el Tue Jun 14 15:07:56 2005 +0000 @@ -84,7 +84,7 @@ (defun url-history-setup-save-timer () "Reset the history list timer." (interactive) - (ignore-errors + (ignore-errors (cond ((fboundp 'cancel-timer) (cancel-timer url-history-timer)) ((fboundp 'delete-itimer) (delete-itimer url-history-timer)))) (setq url-history-timer nil) @@ -192,7 +192,7 @@ (gethash string url-history-hash-table) t)) (t - (error "url-completion-function very confused.")))) + (error "url-completion-function very confused")))) (provide 'url-history)