aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/emulation/viper-ex.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/emulation/viper-ex.el b/lisp/emulation/viper-ex.el
index f64960dd753..26bca686cb3 100644
--- a/lisp/emulation/viper-ex.el
+++ b/lisp/emulation/viper-ex.el
@@ -2013,8 +2013,10 @@ Please contact your system administrator. "))))))
2013 (condition-case conds 2013 (condition-case conds
2014 (progn 2014 (progn
2015 (if (string= tag "") 2015 (if (string= tag "")
2016 (find-tag ex-tag t) 2016 ;; If we have an *xref* window, `next-error' will take
2017 (find-tag-other-window ex-tag)) 2017 ;; us to the next definition.
2018 (next-error)
2019 (xref-find-definitions-other-window ex-tag))
2018 (viper-change-state-to-vi)) 2020 (viper-change-state-to-vi))
2019 (error 2021 (error
2020 (viper-change-state-to-vi) 2022 (viper-change-state-to-vi)