]> code.delx.au - gnu-emacs/commitdiff
* vc-hg.el (vc-hg-next-revision): Ensure use of default "tip" output format
authorKirk Kelsey <kirk.kelsey@0x4b.net>
Sat, 1 Dec 2012 02:10:53 +0000 (21:10 -0500)
committerGlenn Morris <rgm@gnu.org>
Sat, 1 Dec 2012 02:10:53 +0000 (21:10 -0500)
Fixes: debbugs:6968
lisp/ChangeLog
lisp/ChangeLog.15
lisp/vc/vc-hg.el

index 498a2ec6fa0937b3814bf65590a712c11b217dcc..4dc694e486cf31fc349cb2ecf9e51f680bac3ebd 100644 (file)
@@ -1,3 +1,8 @@
+2012-12-01  Kirk Kelsey  <kirk.kelsey@0x4b.net>
+
+       * vc/vc-hg.el (vc-hg-next-revision):
+       Ensure use of default "tip" output format.  (Bug#6968)
+
 2012-12-01  Kim F. Storm  <storm@cua.dk>
 
        * startup.el (fancy-startup-tail): Add a clickable link
index 83657a98bfd89059a876326db13df9da4cfff52f..b97cd80cdba65d3d70ad73f4f46198eb5b82ed4f 100644 (file)
        Remember the buffers at head, rather than their name.
        * iswitchb.el (iswitchb-kill-buffer): Re-make the list.
 
-2010-08-22  Kirk Kelsey  <kirk.kelsey@0x4b.net>  (tiny change)
+2010-08-22  Kirk Kelsey  <kirk.kelsey@0x4b.net>
             Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * progmodes/make-mode.el (makefile-fill-paragraph): Account for the
index 727fb08e38846296d119b2b1a158749528952207..50678fad075b53b3395915b28e0111008f337a6e 100644 (file)
@@ -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)))))