diff options
author | Alexandre Julliard <julliard@winehq.org> | 2007-10-28 11:06:27 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-10-28 14:08:28 -0700 |
commit | 2f6e86a86fb9830c0c3205a317f6205f156cfacc (patch) | |
tree | 24b85db3aab2aff1995145303916cf41a7decf60 /contrib | |
parent | 6df023884b87ef140829d78b67fab90a7f9b1211 (diff) | |
download | git-2f6e86a86fb9830c0c3205a317f6205f156cfacc.tar.gz |
git.el: Refresh only the changed file marks when marking/unmarking all.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/emacs/git.el | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/contrib/emacs/git.el b/contrib/emacs/git.el index 0e5091c1b7..e5ee8ce58b 100644 --- a/contrib/emacs/git.el +++ b/contrib/emacs/git.el @@ -842,7 +842,8 @@ Return the list of files that haven't been handled." "Mark all files." (interactive) (unless git-status (error "Not in git-status buffer.")) - (ewoc-map (lambda (info) (setf (git-fileinfo->marked info) t) t) git-status) + (ewoc-map (lambda (info) (unless (git-fileinfo->marked info) + (setf (git-fileinfo->marked info) t))) git-status) ; move back to goal column after invalidate (when goal-column (move-to-column goal-column))) @@ -850,7 +851,9 @@ Return the list of files that haven't been handled." "Unmark all files." (interactive) (unless git-status (error "Not in git-status buffer.")) - (ewoc-map (lambda (info) (setf (git-fileinfo->marked info) nil) t) git-status) + (ewoc-map (lambda (info) (when (git-fileinfo->marked info) + (setf (git-fileinfo->marked info) nil) + t)) git-status) ; move back to goal column after invalidate (when goal-column (move-to-column goal-column))) |