aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ex_docmd.c
diff options
context:
space:
mode:
authorLewis Russell <lewis6991@gmail.com>2022-10-14 09:53:15 +0100
committerGitHub <noreply@github.com>2022-10-14 09:53:15 +0100
commit9931db2e3fa43ed02e1b0bc6f167ed5398fa6369 (patch)
treeb29a3b9d45b0700da10be86c0237510a2a2f2cde /src/nvim/ex_docmd.c
parentd339b4aad7461937e1e03ac0836b2eb1354ff442 (diff)
parent7f11dfdef880ee98e4f18f046f21e285157d10ac (diff)
downloadrneovim-9931db2e3fa43ed02e1b0bc6f167ed5398fa6369.tar.gz
rneovim-9931db2e3fa43ed02e1b0bc6f167ed5398fa6369.tar.bz2
rneovim-9931db2e3fa43ed02e1b0bc6f167ed5398fa6369.zip
Merge pull request #20545 from lewis6991/remove_cscope
Diffstat (limited to 'src/nvim/ex_docmd.c')
-rw-r--r--src/nvim/ex_docmd.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/nvim/ex_docmd.c b/src/nvim/ex_docmd.c
index 5591b5f55d..77d310e338 100644
--- a/src/nvim/ex_docmd.c
+++ b/src/nvim/ex_docmd.c
@@ -44,7 +44,6 @@
#include "nvim/hardcopy.h"
#include "nvim/help.h"
#include "nvim/highlight_group.h"
-#include "nvim/if_cscope.h"
#include "nvim/input.h"
#include "nvim/keycodes.h"
#include "nvim/locale.h"
@@ -6589,10 +6588,6 @@ static void ex_tag_cmd(exarg_T *eap, char *name)
cmd = DT_LAST; // ":tlast"
break;
default: // ":tag"
- if (p_cst && *eap->arg != NUL) {
- ex_cstag(eap);
- return;
- }
cmd = DT_TAG;
break;
}