# HG changeset patch # User Bram Moolenaar # Date 1638743405 -3600 # Node ID b18f3b0f317c7ea1c615a611e76e81988a1b3031 # Parent c725b8e17f1f5c97163c620dcffbadec2421b3ff patch 8.2.3750: error messages are everywhere Commit: https://github.com/vim/vim/commit/40bcec1bac34d34a3d4d7c5f6b2cc1f163acbd00 Author: Bram Moolenaar Date: Sun Dec 5 22:19:27 2021 +0000 patch 8.2.3750: error messages are everywhere Problem: Error messages are everywhere. Solution: Move more error messages to errors.h and adjust the names. diff --git a/src/blob.c b/src/blob.c --- a/src/blob.c +++ b/src/blob.c @@ -209,7 +209,7 @@ write_blob(FILE *fd, blob_T *blob) if (fwrite(blob->bv_ga.ga_data, 1, blob->bv_ga.ga_len, fd) < (size_t)blob->bv_ga.ga_len) { - emsg(_(e_write)); + emsg(_(e_error_while_writing)); return FAIL; } return OK; diff --git a/src/buffer.c b/src/buffer.c --- a/src/buffer.c +++ b/src/buffer.c @@ -193,7 +193,7 @@ open_buffer( // This is OK, since there are no changes to lose. if (curbuf == NULL) { - emsg(_("E82: Cannot allocate any buffer, exiting...")); + emsg(_(e_cannot_allocate_any_buffer_exiting)); // Don't try to do any saving, with "curbuf" NULL almost nothing // will work. @@ -201,7 +201,7 @@ open_buffer( getout(2); } - emsg(_("E83: Cannot allocate buffer, using other one...")); + emsg(_(e_cannot_allocate_buffer_using_other_one)); enter_buffer(curbuf); #ifdef FEAT_SYN_HL if (old_tw != curbuf->b_p_tw) @@ -1182,7 +1182,7 @@ empty_curbuf( if (action == DOBUF_UNLOAD) { - emsg(_("E90: Cannot unload last buffer")); + emsg(_(e_cannot_unload_last_buffer)); return FAIL; } @@ -1255,7 +1255,7 @@ do_buffer_ext( } if (!bufIsChanged(buf)) { - emsg(_("E84: No modified buffer found")); + emsg(_(e_no_modified_buffer_found)); return FAIL; } } @@ -1294,7 +1294,7 @@ do_buffer_ext( if (bp == buf) { // back where we started, didn't find anything. - emsg(_("E85: There is no listed buffer")); + emsg(_(e_there_is_no_listed_buffer)); return FAIL; } } @@ -1306,12 +1306,12 @@ do_buffer_ext( { // don't warn when deleting if (!unload) - semsg(_(e_nobufnr), count); + semsg(_(e_buffer_nr_does_not_exist), count); } else if (dir == FORWARD) - emsg(_("E87: Cannot go beyond last buffer")); + emsg(_(e_cannot_go_beyond_last_buffer)); else - emsg(_("E88: Cannot go before first buffer")); + emsg(_(e_cannot_go_before_first_buffer)); return FAIL; } #ifdef FEAT_PROP_POPUP @@ -1364,7 +1364,7 @@ do_buffer_ext( else #endif { - semsg(_("E89: No write since last change for buffer %d (add ! to override)"), + semsg(_(e_no_write_since_last_change_for_buffer_nr_add_bang_to_override), buf->b_fnum); return FAIL; } diff --git a/src/channel.c b/src/channel.c --- a/src/channel.c +++ b/src/channel.c @@ -1210,7 +1210,8 @@ channel_set_options(channel_T *channel, { buf = buflist_findnr(opt->jo_io_buf[PART_OUT]); if (buf == NULL) - semsg(_(e_nobufnr), (long)opt->jo_io_buf[PART_OUT]); + semsg(_(e_buffer_nr_does_not_exist), + (long)opt->jo_io_buf[PART_OUT]); } else { @@ -1257,7 +1258,8 @@ channel_set_options(channel_T *channel, { buf = buflist_findnr(opt->jo_io_buf[PART_ERR]); if (buf == NULL) - semsg(_(e_nobufnr), (long)opt->jo_io_buf[PART_ERR]); + semsg(_(e_buffer_nr_does_not_exist), + (long)opt->jo_io_buf[PART_ERR]); } else { diff --git a/src/errors.h b/src/errors.h --- a/src/errors.h +++ b/src/errors.h @@ -168,6 +168,34 @@ EXTERN char e_too_many_brackets[] INIT(= N_("E76: Too many [")); EXTERN char e_too_many_file_names[] INIT(= N_("E77: Too many file names")); +EXTERN char e_unknown_mark[] + INIT(= N_("E78: Unknown mark")); +EXTERN char e_cannot_expand_wildcards[] + INIT(= N_("E79: Cannot expand wildcards")); +EXTERN char e_error_while_writing[] + INIT(= N_("E80: Error while writing")); +#ifdef FEAT_EVAL +EXTERN char e_using_sid_not_in_script_context[] + INIT(= N_("E81: Using not in a script context")); +#endif +EXTERN char e_cannot_allocate_any_buffer_exiting[] + INIT(= N_("E82: Cannot allocate any buffer, exiting...")); +EXTERN char e_cannot_allocate_buffer_using_other_one[] + INIT(= N_("E83: Cannot allocate buffer, using other one...")); +EXTERN char e_no_modified_buffer_found[] + INIT(= N_("E84: No modified buffer found")); +EXTERN char e_there_is_no_listed_buffer[] + INIT(= N_("E85: There is no listed buffer")); +EXTERN char e_buffer_nr_does_not_exist[] + INIT(= N_("E86: Buffer %ld does not exist")); +EXTERN char e_cannot_go_beyond_last_buffer[] + INIT(= N_("E87: Cannot go beyond last buffer")); +EXTERN char e_cannot_go_before_first_buffer[] + INIT(= N_("E88: Cannot go before first buffer")); +EXTERN char e_no_write_since_last_change_for_buffer_nr_add_bang_to_override[] + INIT(= N_("E89: No write since last change for buffer %d (add ! to override)")); +EXTERN char e_cannot_unload_last_buffer[] + INIT(= N_("E90: Cannot unload last buffer")); #ifdef FEAT_EVAL EXTERN char e_undefined_variable_str[] diff --git a/src/ex_docmd.c b/src/ex_docmd.c --- a/src/ex_docmd.c +++ b/src/ex_docmd.c @@ -9167,7 +9167,7 @@ eval_vars( case SPEC_SID: if (current_sctx.sc_sid <= 0) { - *errormsg = _(e_usingsid); + *errormsg = _(e_using_sid_not_in_script_context); return NULL; } sprintf((char *)strbuf, "%d_", current_sctx.sc_sid); diff --git a/src/globals.h b/src/globals.h --- a/src/globals.h +++ b/src/globals.h @@ -1717,14 +1717,10 @@ EXTERN char e_signdata[] INIT(= N_("E255 #endif EXTERN char e_trailing[] INIT(= N_("E488: Trailing characters")); EXTERN char e_trailing_arg[] INIT(= N_("E488: Trailing characters: %s")); -EXTERN char e_umark[] INIT(= N_("E78: Unknown mark")); -EXTERN char e_wildexpand[] INIT(= N_("E79: Cannot expand wildcards")); EXTERN char e_winheight[] INIT(= N_("E591: 'winheight' cannot be smaller than 'winminheight'")); EXTERN char e_winwidth[] INIT(= N_("E592: 'winwidth' cannot be smaller than 'winminwidth'")); -EXTERN char e_write[] INIT(= N_("E80: Error while writing")); EXTERN char e_zerocount[] INIT(= N_("E939: Positive count required")); #ifdef FEAT_EVAL -EXTERN char e_usingsid[] INIT(= N_("E81: Using not in a script context")); EXTERN char e_missing_paren[] INIT(= N_("E107: Missing parentheses: %s")); EXTERN char e_missing_close[] INIT(= N_("E110: Missing ')'")); EXTERN char e_missing_dict_colon[] INIT(= N_("E720: Missing colon in Dictionary: %s")); @@ -1741,7 +1737,6 @@ EXTERN char e_nbreadonly[] INIT(= N_("E7 #endif EXTERN char e_maxmempat[] INIT(= N_("E363: pattern uses more memory than 'maxmempattern'")); EXTERN char e_emptybuf[] INIT(= N_("E749: empty buffer")); -EXTERN char e_nobufnr[] INIT(= N_("E86: Buffer %ld does not exist")); EXTERN char e_invalpat[] INIT(= N_("E682: Invalid search pattern or delimiter")); EXTERN char e_bufloaded[] INIT(= N_("E139: File is loaded in another buffer")); diff --git a/src/job.c b/src/job.c --- a/src/job.c +++ b/src/job.c @@ -225,7 +225,8 @@ get_job_options(typval_T *tv, jobopt_T * } if (buflist_findnr(opt->jo_io_buf[part]) == NULL) { - semsg(_(e_nobufnr), (long)opt->jo_io_buf[part]); + semsg(_(e_buffer_nr_does_not_exist), + (long)opt->jo_io_buf[part]); return FAIL; } } @@ -475,7 +476,7 @@ get_job_options(typval_T *tv, jobopt_T * opt->jo_bufnr_buf = buflist_findnr(nr); if (opt->jo_bufnr_buf == NULL) { - semsg(_(e_nobufnr), (long)nr); + semsg(_(e_buffer_nr_does_not_exist), (long)nr); return FAIL; } if (opt->jo_bufnr_buf->b_nwindows == 0 @@ -1332,7 +1333,8 @@ job_start( { buf = buflist_findnr(opt.jo_io_buf[PART_IN]); if (buf == NULL) - semsg(_(e_nobufnr), (long)opt.jo_io_buf[PART_IN]); + semsg(_(e_buffer_nr_does_not_exist), + (long)opt.jo_io_buf[PART_IN]); } else if (!(opt.jo_set & JO_IN_NAME)) { diff --git a/src/list.c b/src/list.c --- a/src/list.c +++ b/src/list.c @@ -1603,7 +1603,7 @@ write_list(FILE *fd, list_T *list, int b } if (ret == FAIL) { - emsg(_(e_write)); + emsg(_(e_error_while_writing)); break; } } diff --git a/src/mark.c b/src/mark.c --- a/src/mark.c +++ b/src/mark.c @@ -578,7 +578,7 @@ check_mark(pos_T *pos) { if (pos == NULL) { - emsg(_(e_umark)); + emsg(_(e_unknown_mark)); return FAIL; } if (pos->lnum <= 0) diff --git a/src/misc1.c b/src/misc1.c --- a/src/misc1.c +++ b/src/misc1.c @@ -2403,7 +2403,7 @@ get_cmd_output_as_rettv( buf = buflist_findnr(argvars[1].vval.v_number); if (buf == NULL) { - semsg(_(e_nobufnr), argvars[1].vval.v_number); + semsg(_(e_buffer_nr_does_not_exist), argvars[1].vval.v_number); fclose(fd); goto errret; } diff --git a/src/os_unix.c b/src/os_unix.c --- a/src/os_unix.c +++ b/src/os_unix.c @@ -6797,7 +6797,7 @@ mch_expand_wildcards( if (!(flags & EW_SILENT)) #endif { - msg(_(e_wildexpand)); + msg(_(e_cannot_expand_wildcards)); msg_start(); // don't overwrite this message } } @@ -6817,7 +6817,7 @@ mch_expand_wildcards( // Something went wrong, perhaps a file name with a special char. if (!(flags & EW_SILENT)) { - msg(_(e_wildexpand)); + msg(_(e_cannot_expand_wildcards)); msg_start(); // don't overwrite this message } vim_free(tempname); diff --git a/src/popupwin.c b/src/popupwin.c --- a/src/popupwin.c +++ b/src/popupwin.c @@ -1877,7 +1877,7 @@ popup_create(typval_T *argvars, typval_T buf = buflist_findnr(argvars[0].vval.v_number); if (buf == NULL) { - semsg(_(e_nobufnr), argvars[0].vval.v_number); + semsg(_(e_buffer_nr_does_not_exist), argvars[0].vval.v_number); return NULL; } #ifdef FEAT_TERMINAL diff --git a/src/register.c b/src/register.c --- a/src/register.c +++ b/src/register.c @@ -2836,7 +2836,7 @@ write_reg_contents_ex( buf = buflist_findnr(num); if (buf == NULL) - semsg(_(e_nobufnr), (long)num); + semsg(_(e_buffer_nr_does_not_exist), (long)num); } else buf = buflist_findnr(buflist_findpat(str, str + STRLEN(str), diff --git a/src/session.c b/src/session.c --- a/src/session.c +++ b/src/session.c @@ -1331,7 +1331,7 @@ ex_mkrc(exarg_T *eap) failed |= fclose(fd); if (failed) - emsg(_(e_write)); + emsg(_(e_error_while_writing)); #if defined(FEAT_SESSION) else if (eap->cmdidx == CMD_mksession) { diff --git a/src/spellfile.c b/src/spellfile.c --- a/src/spellfile.c +++ b/src/spellfile.c @@ -5259,7 +5259,7 @@ theend: if (fwv != (size_t)1) retval = FAIL; if (retval == FAIL) - emsg(_(e_write)); + emsg(_(e_error_while_writing)); return retval; } @@ -5404,7 +5404,7 @@ put_node( if (fd != NULL) if (putc(np->wn_byte, fd) == EOF) // or { - emsg(_(e_write)); + emsg(_(e_error_while_writing)); return 0; } } @@ -5815,7 +5815,7 @@ sug_write(spellinfo_T *spin, char_u *fna */ if (fwrite(VIMSUGMAGIC, VIMSUGMAGICL, (size_t)1, fd) != 1) // { - emsg(_(e_write)); + emsg(_(e_error_while_writing)); goto theend; } putc(VIMSUGVERSION, fd); // @@ -5857,7 +5857,7 @@ sug_write(spellinfo_T *spin, char_u *fna len = (int)STRLEN(line) + 1; if (fwrite(line, (size_t)len, (size_t)1, fd) == 0) { - emsg(_(e_write)); + emsg(_(e_error_while_writing)); goto theend; } spin->si_memtot += len; @@ -5865,7 +5865,7 @@ sug_write(spellinfo_T *spin, char_u *fna // Write another byte to check for errors. if (putc(0, fd) == EOF) - emsg(_(e_write)); + emsg(_(e_error_while_writing)); vim_snprintf((char *)IObuff, IOSIZE, _("Estimated runtime memory use: %d bytes"), spin->si_memtot); diff --git a/src/term.c b/src/term.c --- a/src/term.c +++ b/src/term.c @@ -6021,7 +6021,7 @@ replace_termcodes( if (STRNICMP(src, "", 5) == 0) { if (current_sctx.sc_sid <= 0) - emsg(_(e_usingsid)); + emsg(_(e_using_sid_not_in_script_context)); else { src += 5; diff --git a/src/userfunc.c b/src/userfunc.c --- a/src/userfunc.c +++ b/src/userfunc.c @@ -3763,7 +3763,7 @@ trans_function_name( // It's script-local, "s:" or "" if (current_sctx.sc_sid <= 0) { - emsg(_(e_usingsid)); + emsg(_(e_using_sid_not_in_script_context)); goto theend; } sprintf((char *)sid_buf, "%ld_", (long)current_sctx.sc_sid); diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -754,6 +754,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 3750, +/**/ 3749, /**/ 3748,