From 71630ffea060292203f14627262c11172fc35ded Mon Sep 17 00:00:00 2001 From: Sam Steingold Date: Tue, 22 Sep 2009 23:48:19 +0000 Subject: [PATCH] (vc-hg-outgoing, vc-hg-incoming): use okstatus instead of ignore-errors --- lisp/ChangeLog | 4 ++-- lisp/vc-hg.el | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index cebb444e380..d7a0790428e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,8 +1,8 @@ 2009-09-22 Sam Steingold * vc-hg.el (vc-hg-print-log): Fix shortlog arg passing. - (vc-hg-outgoing, vc-hg-incoming): Ignore errors from - `vc-hg-command' because hg returns status 1 when nothing is found. + (vc-hg-outgoing, vc-hg-incoming): Bump okstatus in `vc-hg-command' + to 1 because hg returns status 1 when nothing is found. 2009-09-22 Stefan Monnier diff --git a/lisp/vc-hg.el b/lisp/vc-hg.el index 80f130bd565..e021178624b 100644 --- a/lisp/vc-hg.el +++ b/lisp/vc-hg.el @@ -570,14 +570,14 @@ REV is the revision to check out into WORKFILE." (defun vc-hg-outgoing () (interactive) (let ((bname "*Hg outgoing*")) - (ignore-errors (vc-hg-command bname 0 nil "outgoing" "-n")) + (vc-hg-command bname 1 nil "outgoing" "-n") (pop-to-buffer bname) (vc-hg-outgoing-mode))) (defun vc-hg-incoming () (interactive) (let ((bname "*Hg incoming*")) - (ignore-errors (vc-hg-command bname 0 nil "incoming" "-n")) + (vc-hg-command bname 0 nil "incoming" "-n") (pop-to-buffer bname) (vc-hg-incoming-mode))) -- 2.11.4.GIT