* vc-hg.el (vc-hg-next-revision): Ensure use of default "tip" output format
Fixes: debbugs:6968
This commit is contained in:
parent
5781e949ae
commit
3ddbf80375
3 changed files with 7 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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)))))
|
||||
|
|
Loading…
Add table
Reference in a new issue