summaryrefslogtreecommitdiffstats
path: root/src/if_cscope.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-01-01 21:59:18 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-01 21:59:18 +0000
commit9a846fbaa569b3690d70606f2a86e97f77a05496 (patch)
treecbe5304927fe21586593c94342e4f023aa3e0837 /src/if_cscope.c
parentb34689010a587e85ff724051f276513a15c634d0 (diff)
patch 8.2.3977: error messages are spread outv8.2.3977
Problem: Error messages are spread out. Solution: Move more error messages to errors.h.
Diffstat (limited to 'src/if_cscope.c')
-rw-r--r--src/if_cscope.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/if_cscope.c b/src/if_cscope.c
index 91538313e0..dbaa9600fb 100644
--- a/src/if_cscope.c
+++ b/src/if_cscope.c
@@ -636,7 +636,7 @@ cs_cnt_connections(void)
cs_reading_emsg(
int idx) // connection index
{
- semsg(_("E262: error reading cscope connection %d"), idx);
+ semsg(_(e_error_reading_cscope_connection_nr), idx);
}
#define CSREAD_BUFSIZE 2048
@@ -1497,7 +1497,7 @@ cs_kill(exarg_T *eap UNUSED)
if ((i != -1) && (i >= csinfo_size || i < -1 || csinfo[i].fname == NULL))
{
if (p_csverbose)
- (void)semsg(_("E261: cscope connection %s not found"), stok);
+ (void)semsg(_(e_cscope_connection_str_not_founc), stok);
}
else
{