diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2005-06-14 15:07:56 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2005-06-14 15:07:56 +0000 |
commit | e2a0329adaca6395909ff0e1eda97474907b23c3 (patch) | |
tree | df858ff63fe5fc2a02c8ecd92cad99579c1a92e0 /lisp/url/url-history.el | |
parent | 3b696504cd460dcf4b4f1655d946e2ad4c148fd2 (diff) | |
download | emacs-e2a0329adaca6395909ff0e1eda97474907b23c3.tar.gz emacs-e2a0329adaca6395909ff0e1eda97474907b23c3.tar.bz2 emacs-e2a0329adaca6395909ff0e1eda97474907b23c3.zip |
(url-completion-function): Follow error conventions.
Diffstat (limited to 'lisp/url/url-history.el')
-rw-r--r-- | lisp/url/url-history.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/url/url-history.el b/lisp/url/url-history.el index e2bc9b17f69..3f9a82b9afd 100644 --- a/lisp/url/url-history.el +++ b/lisp/url/url-history.el @@ -84,7 +84,7 @@ to run the `url-history-setup-save-timer' function manually." (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 @@ user for what type to save as." (gethash string url-history-hash-table) t)) (t - (error "url-completion-function very confused.")))) + (error "url-completion-function very confused")))) (provide 'url-history) |