diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-01-01 21:59:18 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-01-01 21:59:18 +0000 |
commit | 9a846fbaa569b3690d70606f2a86e97f77a05496 (patch) | |
tree | cbe5304927fe21586593c94342e4f023aa3e0837 /src/if_cscope.c | |
parent | b34689010a587e85ff724051f276513a15c634d0 (diff) | |
download | vim-git-9a846fbaa569b3690d70606f2a86e97f77a05496.tar.gz |
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.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/if_cscope.c b/src/if_cscope.c index 91538313e..dbaa9600f 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 { |