[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] 13/14: Fix ggtags-global-handle-exit to conditionally pop up wind
From: |
Leo Liu |
Subject: |
[elpa] 13/14: Fix ggtags-global-handle-exit to conditionally pop up window |
Date: |
Sun, 22 Jun 2014 09:41:44 +0000 |
leoliu pushed a commit to branch master
in repository elpa.
commit 823a5dc43ad31b463b314cff1afb284d581661e2
Author: Leo Liu <address@hidden>
Date: Sun Jun 22 17:34:59 2014 +0800
Fix ggtags-global-handle-exit to conditionally pop up window
A regression introduced in commit
65aba1399e51e69185b1a8bbf75821a5a7764655
"For #45: Fix popping up/down window for search with single match"
---
README.rst | 4 ++--
ggtags.el | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/README.rst b/README.rst
index c1ce7eb..f00d69b 100644
--- a/README.rst
+++ b/README.rst
@@ -294,8 +294,8 @@ Integration with other packages
NEWS
~~~~
-[devel] 0.8.5
-+++++++++++++
+[2014-06-22 Sun] 0.8.5
+++++++++++++++++++++++
#. New command ``ggtags-find-tag-mouse`` for mouse support.
#. New command ``ggtags-find-definition``.
diff --git a/ggtags.el b/ggtags.el
index 3c485f9..09e3af7 100644
--- a/ggtags.el
+++ b/ggtags.el
@@ -1569,7 +1569,7 @@ commands `next-error' and `previous-error'.
(save-excursion (goto-char pt) (end-of-line) (point))
'compilation-message)))
;; There are multiple matches so pop up the buffer.
- (ggtags-global--display-buffer)
+ (and ggtags-navigation-mode (ggtags-global--display-buffer))
;; For the `compilation-auto-jump' in idle timer to run.
;; See also: http://debbugs.gnu.org/13829
(sit-for 0)
- [elpa] 03/14: Fix #56: Restore variable ggtags-completing-read-function, (continued)
- [elpa] 03/14: Fix #56: Restore variable ggtags-completing-read-function, Leo Liu, 2014/06/22
- [elpa] 05/14: Fix #59: detect missing tag files and remove project cache, Leo Liu, 2014/06/22
- [elpa] 04/14: New command ggtags-find-definition for #57, Leo Liu, 2014/06/22
- [elpa] 06/14: Make ggtags-create-tags invalidate ggtags-project-root, Leo Liu, 2014/06/22
- [elpa] 07/14: Fix #65: Clear ggtags-project-root based on default-directory, Leo Liu, 2014/06/22
- [elpa] 11/14: Fix #58: Search history can be manipulated with C-k and C-y, Leo Liu, 2014/06/22
- [elpa] 08/14: Fix #64: Bind M-s s to ggtags-navigation-isearch-forward, Leo Liu, 2014/06/22
- [elpa] 09/14: Fix #60: Declutter command and highlight tag in search history, Leo Liu, 2014/06/22
- [elpa] 10/14: Refactoring: Use a major mode for viewing search history, Leo Liu, 2014/06/22
- [elpa] 14/14: Merge branch 'master' of github.com:leoliu/ggtags, Leo Liu, 2014/06/22
- [elpa] 13/14: Fix ggtags-global-handle-exit to conditionally pop up window,
Leo Liu <=
- [elpa] 12/14: Replace kill-buffer-and-window with ggtags-kill-window, Leo Liu, 2014/06/22