# HG changeset patch # User Bram Moolenaar # Date 1349293723 -7200 # Node ID a2fe24ec6a0d06d0af286b9fee9e307c33f27cca # Parent 1003f9b262d79362dcf2665f45d6d1292be6ca3e updated for version 7.3.681 Problem: List of distributed files picks up backup files. Solution: Make tutor patterns more specific. diff --git a/Filelist b/Filelist --- a/Filelist +++ b/Filelist @@ -693,10 +693,17 @@ LANG_GEN = \ runtime/tutor/Makefile \ runtime/tutor/tutor.utf-8 \ runtime/tutor/tutor.?? \ - runtime/tutor/tutor.??.* \ - runtime/tutor/tutor.??_??.* \ + runtime/tutor/tutor.??.utf-8 \ + runtime/tutor/tutor.??.euc \ + runtime/tutor/tutor.??.sjis \ + runtime/tutor/tutor.??.iso9 \ + runtime/tutor/tutor.??.big5 \ + runtime/tutor/tutor.??.cp1250 \ + runtime/tutor/tutor.??.cp1251 \ + runtime/tutor/tutor.??.cp737 \ + runtime/tutor/tutor.??_??.utf-8 \ runtime/tutor/tutor.bar \ - runtime/tutor/tutor.bar.* \ + runtime/tutor/tutor.bar.utf-8 \ runtime/spell/README.txt \ runtime/spell/??/*.diff \ runtime/spell/??/main.aap \ diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -720,6 +720,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 681, +/**/ 680, /**/ 679,