diff options
author | Dmitry Gutov <dgutov@yandex.ru> | 2017-09-30 16:17:02 +0200 |
---|---|---|
committer | Dmitry Gutov <dgutov@yandex.ru> | 2017-09-30 16:17:02 +0200 |
commit | 8b2ab5014b2c1641bb62efa63b9ee54b4c056b5a (patch) | |
tree | 92aedd821b87e1879090d5b760b2ffc0471a72ce /lisp/cedet/semantic/ia.el | |
parent | 5b45e7e1c337ddcc357b91755500d3771459be94 (diff) | |
download | emacs-8b2ab5014b2c1641bb62efa63b9ee54b4c056b5a.tar.gz |
Fix semantic-ia-fast-jump
* lisp/cedet/semantic/ia.el (semantic-ia--fast-jump-helper):
Use `pop-to-buffer-same-window' (bug#28645).
Diffstat (limited to 'lisp/cedet/semantic/ia.el')
-rw-r--r-- | lisp/cedet/semantic/ia.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/cedet/semantic/ia.el b/lisp/cedet/semantic/ia.el index d4201fcf51f..625c3ae9757 100644 --- a/lisp/cedet/semantic/ia.el +++ b/lisp/cedet/semantic/ia.el @@ -322,7 +322,7 @@ This helper manages the mark, buffer switching, and pulsing." (semantic-go-to-tag dest) ;; 3) go-to-tag doesn't switch the buffer in the current window, ;; so it is like find-file-noselect. Bring it forward. - (switch-to-buffer (current-buffer)) + (pop-to-buffer-same-window (current-buffer)) ;; 4) Fancy pulsing. (pulse-momentary-highlight-one-line (point)) ) |