emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r111049: * vc-hg.el (vc-hg-next-revis


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r111049: * vc-hg.el (vc-hg-next-revision): Ensure use of default "tip" output format
Date: Fri, 30 Nov 2012 21:10:53 -0500
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 111049
fixes bug: http://debbugs.gnu.org/6968
author: Kirk Kelsey <address@hidden>
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Fri 2012-11-30 21:10:53 -0500
message:
  * vc-hg.el (vc-hg-next-revision): Ensure use of default "tip" output format
modified:
  lisp/ChangeLog
  lisp/ChangeLog.15
  lisp/vc/vc-hg.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-12-01 02:08:30 +0000
+++ b/lisp/ChangeLog    2012-12-01 02:10:53 +0000
@@ -1,3 +1,8 @@
+2012-12-01  Kirk Kelsey  <address@hidden>
+
+       * vc/vc-hg.el (vc-hg-next-revision):
+       Ensure use of default "tip" output format.  (Bug#6968)
+
 2012-12-01  Kim F. Storm  <address@hidden>
 
        * startup.el (fancy-startup-tail): Add a clickable link

=== modified file 'lisp/ChangeLog.15'
--- a/lisp/ChangeLog.15 2012-10-07 02:07:46 +0000
+++ b/lisp/ChangeLog.15 2012-12-01 02:10:53 +0000
@@ -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  <address@hidden>  (tiny change)
+2010-08-22  Kirk Kelsey  <address@hidden>
             Stefan Monnier  <address@hidden>
 
        * progmodes/make-mode.el (makefile-fill-paragraph): Account for the

=== modified file 'lisp/vc/vc-hg.el'
--- a/lisp/vc/vc-hg.el  2012-07-19 14:38:01 +0000
+++ b/lisp/vc/vc-hg.el  2012-12-01 02:10:53 +0000
@@ -384,7 +384,7 @@
   (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)))))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]