# HG changeset patch # User Bram Moolenaar # Date 1617045303 -7200 # Node ID 3564fd251bb6815800e7df26653ea865924b51bb # Parent 6a25a22b8d8cf084dbfc58a09132e7b0901965c9 patch 8.2.2676: missing error message Commit: https://github.com/vim/vim/commit/9ea7e55ab9eacbdcfde76627fdc070a9cb4d1d45 Author: Bram Moolenaar Date: Mon Mar 29 21:06:04 2021 +0200 patch 8.2.2676: missing error message Problem: Missing error message. Solution: Add new error message. diff --git a/src/errors.h b/src/errors.h --- a/src/errors.h +++ b/src/errors.h @@ -393,3 +393,5 @@ EXTERN char e_for_loop_on_str_not_suppor INIT(= N_("E1177: For loop on %s not supported")); EXTERN char e_cannot_lock_unlock_local_variable[] INIT(= N_("E1178: Cannot lock or unlock a local variable")); +EXTERN char e_failed_to_extract_pwd_from_str_check_your_shell_config[] + INIT(= N_("E1179: Failed to extract PWD from %s, check your shell's config related to OSC 7")); diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2676, +/**/ 2675, /**/ 2674,