* vc-hg.el (vc-hg-next-revision): Ensure use of default "tip" output format

Fixes: debbugs:6968
This commit is contained in:
Kirk Kelsey 2012-11-30 21:10:53 -05:00 committed by Glenn Morris
parent 5781e949ae
commit 3ddbf80375
3 changed files with 7 additions and 2 deletions

View 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

View file

@ -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 <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

View 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)))))