To: vim_dev@googlegroups.com Subject: Patch 8.2.3963 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 8.2.3963 Problem: Build failure with tiny and small features. (Tony Mechelynck) Solution: Adjust #ifdefs. Files: src/errors.h, src/message.c *** ../vim-8.2.3962/src/errors.h 2021-12-31 22:48:56.571368910 +0000 --- src/errors.h 2022-01-01 00:49:05.305753260 +0000 *************** *** 549,554 **** --- 549,555 ---- #ifdef FEAT_EVAL EXTERN char e_invalid_command_str[] INIT(= N_("E476: Invalid command: %s")); + #endif // E502 EXTERN char e_is_a_directory[] *************** *** 618,623 **** --- 619,625 ---- INIT(= N_("E676: No matching autocommands for acwrite buffer")); EXTERN char e_buffer_nr_invalid_buffer_number[] INIT(= N_("E680: : invalid buffer number")); + #ifdef FEAT_EVAL EXTERN char e_cannot_index_a_funcref[] INIT(= N_("E695: Cannot index a Funcref")); *************** *** 684,692 **** INIT(= N_("E948: Job still running")); EXTERN char e_job_still_running_add_bang_to_end_the_job[] INIT(= N_("E948: Job still running (add ! to end the job)")); EXTERN char e_file_changed_while_writing[] INIT(= N_("E949: File changed while writing")); - #endif EXTERN char_u e_invalid_column_number_nr[] INIT(= N_("E964: Invalid column number: %ld")); EXTERN char_u e_invalid_line_number_nr[] --- 686,694 ---- INIT(= N_("E948: Job still running")); EXTERN char e_job_still_running_add_bang_to_end_the_job[] INIT(= N_("E948: Job still running (add ! to end the job)")); + #endif EXTERN char e_file_changed_while_writing[] INIT(= N_("E949: File changed while writing")); EXTERN char_u e_invalid_column_number_nr[] INIT(= N_("E964: Invalid column number: %ld")); EXTERN char_u e_invalid_line_number_nr[] *** ../vim-8.2.3962/src/message.c 2021-12-31 22:48:56.583368902 +0000 --- src/message.c 2022-01-01 00:51:58.881488348 +0000 *************** *** 826,832 **** if (!emsg_not_now()) { emsg_core((char_u *)s); ! #ifdef ABORT_ON_INTERNAL_ERROR set_vim_var_string(VV_ERRMSG, (char_u *)s, -1); abort(); #endif --- 826,832 ---- if (!emsg_not_now()) { emsg_core((char_u *)s); ! #if defined(ABORT_ON_INTERNAL_ERROR) && defined(FEAT_EVAL) set_vim_var_string(VV_ERRMSG, (char_u *)s, -1); abort(); #endif *** ../vim-8.2.3962/src/version.c 2021-12-31 23:15:48.833600057 +0000 --- src/version.c 2022-01-01 00:55:04.121210964 +0000 *************** *** 751,752 **** --- 751,754 ---- { /* Add new patch number below this line */ + /**/ + 3963, /**/ -- hundred-and-one symptoms of being an internet addict: 172. You join listservers just for the extra e-mail. /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ /// \\\ \\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ /// \\\ help me help AIDS victims -- http://ICCF-Holland.org ///