From: Alexandre Julliard Date: Sun, 28 Oct 2007 10:05:11 +0000 (+0100) Subject: git.el: Fix typo in "Reverted file" message. X-Git-Tag: v1.5.4-rc0~316 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=3697c5f37a8b7b15d0a3be51d05147654a951115;p=git.git git.el: Fix typo in "Reverted file" message. Signed-off-by: Alexandre Julliard Signed-off-by: Junio C Hamano --- diff --git a/contrib/emacs/git.el b/contrib/emacs/git.el index 4286d160a..8cfbdd7be 100644 --- a/contrib/emacs/git.el +++ b/contrib/emacs/git.el @@ -955,7 +955,7 @@ Return the list of files that haven't been handled." (when modified (apply #'git-call-process-env nil nil "checkout" "HEAD" modified)) (git-update-status-files (append added modified) 'uptodate) - (git-success-message "Reverted" files)))) + (git-success-message "Reverted" (git-get-filenames files))))) (defun git-resolve-file () "Resolve conflicts in marked file(s)."