From 3ddbf803756fec0f773e0f5ba6f6a79044c44829 Mon Sep 17 00:00:00 2001 From: Kirk Kelsey Date: Fri, 30 Nov 2012 21:10:53 -0500 Subject: [PATCH] * vc-hg.el (vc-hg-next-revision): Ensure use of default "tip" output format Fixes: debbugs:6968 --- lisp/ChangeLog | 5 +++++ lisp/ChangeLog.15 | 2 +- lisp/vc/vc-hg.el | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 498a2ec6fa0..4dc694e486c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2012-12-01 Kirk Kelsey + + * vc/vc-hg.el (vc-hg-next-revision): + Ensure use of default "tip" output format. (Bug#6968) + 2012-12-01 Kim F. Storm * startup.el (fancy-startup-tail): Add a clickable link diff --git a/lisp/ChangeLog.15 b/lisp/ChangeLog.15 index 83657a98bfd..b97cd80cdba 100644 --- a/lisp/ChangeLog.15 +++ b/lisp/ChangeLog.15 @@ -7979,7 +7979,7 @@ Remember the buffers at head, rather than their name. * iswitchb.el (iswitchb-kill-buffer): Re-make the list. -2010-08-22 Kirk Kelsey (tiny change) +2010-08-22 Kirk Kelsey Stefan Monnier * progmodes/make-mode.el (makefile-fill-paragraph): Account for the diff --git a/lisp/vc/vc-hg.el b/lisp/vc/vc-hg.el index 727fb08e388..50678fad075 100644 --- a/lisp/vc/vc-hg.el +++ b/lisp/vc/vc-hg.el @@ -384,7 +384,7 @@ Optional arg REVISION is a revision to annotate from." (let ((newrev (1+ (string-to-number rev))) (tip-revision (with-temp-buffer - (vc-hg-command t 0 nil "tip") + (vc-hg-command t 0 nil "tip" "--style=default") (goto-char (point-min)) (re-search-forward "^changeset:[ \t]*\\([0-9]+\\):") (string-to-number (match-string-no-properties 1))))) -- 2.39.5