diff options
author | Alexandre Julliard <julliard@winehq.org> | 2007-10-28 11:05:11 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-10-28 14:08:28 -0700 |
commit | 3697c5f37a8b7b15d0a3be51d05147654a951115 (patch) | |
tree | 858ff777cbdd6fd9550efb54eb7712277d445a3a | |
parent | 9ad7c5ae8ae4625bfe32d910b0b480cfea9819e0 (diff) | |
download | git-3697c5f37a8b7b15d0a3be51d05147654a951115.tar.gz git-3697c5f37a8b7b15d0a3be51d05147654a951115.tar.xz |
git.el: Fix typo in "Reverted file" message.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | contrib/emacs/git.el | 2 |
1 files changed, 1 insertions, 1 deletions
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)." |