diff options
Diffstat (limited to 'lisp/cedet/semantic/ia.el')
-rw-r--r-- | lisp/cedet/semantic/ia.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/cedet/semantic/ia.el b/lisp/cedet/semantic/ia.el index 1549f52925f..68c6e4279cf 100644 --- a/lisp/cedet/semantic/ia.el +++ b/lisp/cedet/semantic/ia.el @@ -316,8 +316,8 @@ This helper manages the mark, buffer switching, and pulsing." ;; 1) Push the mark, so you can pop global mark back, or ;; use semantic-mru-bookmark mode to do so. (push-mark) - (when (fboundp 'push-tag-mark) - (push-tag-mark)) + (when (fboundp 'xref-push-marker-stack) + (xref-push-marker-stack)) ;; 2) Visits the tag. (semantic-go-to-tag dest) ;; 3) go-to-tag doesn't switch the buffer in the current window, @@ -385,8 +385,8 @@ origin of the code at point." ;; Push the mark, so you can pop global mark back, or ;; use semantic-mru-bookmark mode to do so. (push-mark) - (when (fboundp 'push-tag-mark) - (push-tag-mark)) + (when (fboundp 'xref-push-marker-stack) + (xref-push-marker-stack)) (semantic-decoration-include-visit) ) |