aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2019-06-16 15:21:10 +0200
committerLars Ingebrigtsen2019-06-16 15:21:18 +0200
commit4f2f95049738be97df8647705a8fc05a029ed244 (patch)
tree5a52ac5a41a3e605db2fdbba40bf59b142b56470
parente6404927e3922a1c8daf38a0b9efa7cb1f1377db (diff)
downloademacs-4f2f95049738be97df8647705a8fc05a029ed244.tar.gz
emacs-4f2f95049738be97df8647705a8fc05a029ed244.zip
Fix one of the tags/xref warnings in viper-ex.el
* lisp/emulation/viper-ex.el (ex-tag): Avoid a compilation warning about find-tag-other-window.
-rw-r--r--lisp/emulation/viper-ex.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emulation/viper-ex.el b/lisp/emulation/viper-ex.el
index 45b91cd9c0e..852bf0c8beb 100644
--- a/lisp/emulation/viper-ex.el
+++ b/lisp/emulation/viper-ex.el
@@ -2017,7 +2017,7 @@ Please contact your system administrator. "
2017 (progn 2017 (progn
2018 (if (string= tag "") 2018 (if (string= tag "")
2019 (find-tag ex-tag t) 2019 (find-tag ex-tag t)
2020 (find-tag-other-window ex-tag)) 2020 (xref-find-definitions-other-window ex-tag))
2021 (viper-change-state-to-vi)) 2021 (viper-change-state-to-vi))
2022 (error 2022 (error
2023 (viper-change-state-to-vi) 2023 (viper-change-state-to-vi)