diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-12-31 15:09:27 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-12-31 15:09:27 +0000 |
commit | eb822a280cf4706f7e67319ced1cdf3243b27e20 (patch) | |
tree | 84bfa641e243c5a4399714979a4337c496c4da17 /src/debugger.c | |
parent | 9a015111a56d0011ced40d98f46a9841d1457b51 (diff) | |
download | vim-git-eb822a280cf4706f7e67319ced1cdf3243b27e20.tar.gz |
patch 8.2.3955: error messages are spread outv8.2.3955
Problem: Error messages are spread out.
Solution: Move more errors to errors.h.
Diffstat (limited to 'src/debugger.c')
-rw-r--r-- | src/debugger.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debugger.c b/src/debugger.c index e21dd22e6..57a94a180 100644 --- a/src/debugger.c +++ b/src/debugger.c @@ -815,7 +815,7 @@ ex_breakdel(exarg_T *eap) } if (todel < 0) - semsg(_("E161: Breakpoint not found: %s"), eap->arg); + semsg(_(e_breakpoint_not_found_str), eap->arg); else { while (gap->ga_len > 0) |