git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] git.el: find the git-status buffer whatever its name is
@ 2008-02-22 21:45 Rémi Vanicat
  2008-02-28 12:58 ` Remi Vanicat
  0 siblings, 1 reply; 6+ messages in thread
From: Rémi Vanicat @ 2008-02-22 21:45 UTC (permalink / raw)
  To: git; +Cc: julliard


git-status used the buffer name to find git-status buffers, and that
could failed if the buffer had another name, for example when multiple
working directories was tracked.
Signed-off-by: Rémi Vanicat <vanicat@debian.org>
---
 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 f69b697..14a1601 100644
--- a/contrib/emacs/git.el
+++ b/contrib/emacs/git.el
@@ -1545,7 +1545,7 @@ Commands:
         (with-current-buffer buffer
           (when (and list-buffers-directory
                      (string-equal fulldir (expand-file-name list-buffers-directory))
-                     (string-match "\\*git-status\\*$" (buffer-name buffer)))
+		     (eq major-mode 'git-status-mode))
             (setq found buffer))))
       (setq list (cdr list)))
     found))
-- 
1.5.4.2.191.g7b407


-- 
Rémi Vanicat

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2008-02-29 18:29 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-22 21:45 [PATCH] git.el: find the git-status buffer whatever its name is Rémi Vanicat
2008-02-28 12:58 ` Remi Vanicat
2008-02-28 14:03   ` Alexandre Julliard
2008-02-28 20:14   ` Junio C Hamano
2008-02-29 18:28     ` Rémi Vanicat
2008-02-29  2:00   ` Xavier Maillard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).