]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix vg-hg-annotate-time bug
authorKjetil Orbekk <kj@orbekk.com>
Fri, 29 Dec 2023 13:59:23 +0000 (08:59 -0500)
committerDmitry Gutov <dmitry@gutov.dev>
Mon, 1 Jan 2024 17:56:02 +0000 (19:56 +0200)
* lisp/vc/vc-hg.el (vc-hg-annotate-time): Fix extraction of timestamp
from string.
* test/lisp/vc/vc-hg-tests.el (vc-hg-annotate-time): Test that the
correct timestamp is found.

Copyright-paperwork-exempt: yes

lisp/vc/vc-hg.el
test/lisp/vc/vc-hg-tests.el

index d6dadb74469cb49e4a1f404b205257aebdce58b7..10be29c45af56063284c8528a72dbd70d7f7f987 100644 (file)
@@ -584,8 +584,8 @@ Optional arg REVISION is a revision to annotate from."
     (vc-annotate-convert-time
      (let ((str (match-string-no-properties 2)))
        (encode-time 0 0 0
-                    (string-to-number (substring str 6 8))
-                    (string-to-number (substring str 4 6))
+                    (string-to-number (substring str 8 10))
+                    (string-to-number (substring str 5 7))
                     (string-to-number (substring str 0 4)))))))
 
 (defun vc-hg-annotate-extract-revision-at-line ()
index 89d518b2a91cdaa529f60ba9367070fe68e24148..43bb922d56780fa8c890f2d7fb4a8cc935af25be 100644 (file)
@@ -53,6 +53,8 @@
 (ert-deftest vc-hg-annotate-time ()
   (with-temp-buffer
     (save-excursion (insert "philringnalda 218075 2014-11-28 CLOBBER:"))
-    (should (floatp (vc-hg-annotate-time)))))
+    (should (equal (vc-hg-annotate-time)
+                   (vc-annotate-convert-time
+                    (encode-time 0 0 0 28 11 2014))))))
 
 ;;; vc-hg-tests.el ends here