# HG changeset patch # User Juanma Barranquero # Date 1118761676 0 # Node ID ed3a1f593d3c2c6ac0f08d603f45c24d76f3153b # Parent 3ed17f92f3c97c73f365f4b3c16924a82a0e28fd (url-completion-function): Follow error conventions. diff -r 3ed17f92f3c9 -r ed3a1f593d3c lisp/url/url-history.el --- 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)