aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/vc/vc-hg.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc/vc-hg.el b/lisp/vc/vc-hg.el
index d11dc4c5f41..76eec884a17 100644
--- a/lisp/vc/vc-hg.el
+++ b/lisp/vc/vc-hg.el
@@ -629,7 +629,7 @@ Return the byte's value as an integer."
629 ;; 1+4*4 is the length of the dirstate item header. 629 ;; 1+4*4 is the length of the dirstate item header.
630 (forward-char (1+ (* 3 4))) 630 (forward-char (1+ (* 3 4)))
631 (let ((this-flen (vc-hg--read-u32-be))) 631 (let ((this-flen (vc-hg--read-u32-be)))
632 (if (and (or (eql this-flen flen) 632 (if (and (or (eq this-flen flen)
633 (and (> this-flen flen) 633 (and (> this-flen flen)
634 (eq (char-after (+ (point) flen)) 0))) 634 (eq (char-after (+ (point) flen)) 0)))
635 (search-forward fname (+ (point) flen) t)) 635 (search-forward fname (+ (point) flen) t))