From 192a0e177305e896d9e0ebc098be1e4cbb63eece Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Mon, 22 Sep 2025 17:21:38 +0100 Subject: [PATCH] ; * lisp/vc/vc-git.el (vc-git--checkin): Fix error message. --- lisp/vc/vc-git.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/vc/vc-git.el b/lisp/vc/vc-git.el index 868948c3a35..e7192e092d9 100644 --- a/lisp/vc/vc-git.el +++ b/lisp/vc/vc-git.el @@ -1144,7 +1144,7 @@ For a regular checkin, FILES is the list of files to check in. To check in a patch, PATCH-STRING is the patch text. It is an error to supply both or neither." (unless (xor files patch-string) - (error "Invalid call to `vc-hg--checkin'")) + (error "Invalid call to `vc-git--checkin'")) (let* ((file1 (or (car files) default-directory)) (root (vc-git-root file1)) (default-directory (expand-file-name root))