diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-10-03 21:48:43 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-10-03 21:48:43 +0200 |
commit | 7d11244c99bd92526429c491aea433a16f2dbd25 (patch) | |
tree | 538a820d96c27bcbd9a8d25a31cd5397ccba8489 /Filelist | |
parent | 97cc2384c07b2fd067375fdd5a1a41dbc6c892d6 (diff) | |
download | vim-git-7d11244c99bd92526429c491aea433a16f2dbd25.tar.gz |
updated for version 7.3.681v7.3.681
Problem: List of distributed files picks up backup files.
Solution: Make tutor patterns more specific.
Diffstat (limited to 'Filelist')
-rw-r--r-- | Filelist | 13 |
1 files changed, 10 insertions, 3 deletions
@@ -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 \ |