aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2018-02-16 19:20:29 +0200
committerEli Zaretskii2018-02-16 19:20:29 +0200
commita06a8ed5b66883202ae7182471570dfcabcea973 (patch)
tree610dc289c26eaff356fdf941aaeb700a3b88460f
parentedc06adf96f4aa9d8b707181015acfe61d396edb (diff)
downloademacs-a06a8ed5b66883202ae7182471570dfcabcea973.tar.gz
emacs-a06a8ed5b66883202ae7182471570dfcabcea973.zip
; * lisp/vc/vc-git.el (vc-git--program-version): Fix last change.
-rw-r--r--lisp/vc/vc-git.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc/vc-git.el b/lisp/vc/vc-git.el
index 7ebb72f2706..2d0ea9ce600 100644
--- a/lisp/vc/vc-git.el
+++ b/lisp/vc/vc-git.el
@@ -242,7 +242,7 @@ Should be consistent with the Git config value i18n.logOutputEncoding."
242 ;; Git for Windows appends ".windows.N" to the 242 ;; Git for Windows appends ".windows.N" to the
243 ;; numerical version reported by Git. 243 ;; numerical version reported by Git.
244 (string-match 244 (string-match
245 "git version \\([0-9.]+\\)\\(\.windows.[0-9]+\\)$" 245 "git version \\([0-9.]+\\)\\(\.windows.[0-9]+\\)?$"
246 version-string)) 246 version-string))
247 (match-string 1 version-string) 247 (match-string 1 version-string)
248 "0"))))) 248 "0")))))