# HG changeset patch # User Christian Brabandt # Date 1506370504 -7200 # Node ID be0a855f9fc3fb856ea0fcf18ef5684c3db207e2 # Parent 8b0cb7cf4169e7d9d081729b69f8066f3ddc5ff6 patch 8.0.1145: warning when compiling with Perl commit https://github.com/vim/vim/commit/0c6a32963d1c0b5401ffd7f25e6fc7bf86895744 Author: Bram Moolenaar Date: Mon Sep 25 22:02:32 2017 +0200 patch 8.0.1145: warning when compiling with Perl Problem: Warning when compiling with Perl. Solution: Remove unused variable. (Ken Takata0 diff --git a/src/if_perl.xs b/src/if_perl.xs --- a/src/if_perl.xs +++ b/src/if_perl.xs @@ -1472,7 +1472,6 @@ Msg(text, hl=NULL) PREINIT: int attr; - int id; PPCODE: if (text != NULL) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -762,6 +762,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1145, +/**/ 1144, /**/ 1143,