summaryrefslogtreecommitdiffstats
path: root/runtime/tutor/tutor.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-11-13 23:04:29 +0100
committerBram Moolenaar <Bram@vim.org>2019-11-13 23:04:29 +0100
commit574ee7bc1246070dba598f9561a2776aa1a10d07 (patch)
treed2d6b906d5ad1ae3a18b7e2ced3ab9d9401dc3b5 /runtime/tutor/tutor.vim
parentafe45b68a67769a61b44a96b0ffe3bfce4e9316e (diff)
Update runtime files
Diffstat (limited to 'runtime/tutor/tutor.vim')
-rw-r--r--runtime/tutor/tutor.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/tutor/tutor.vim b/runtime/tutor/tutor.vim
index 9517f6942b..dc6972486e 100644
--- a/runtime/tutor/tutor.vim
+++ b/runtime/tutor/tutor.vim
@@ -1,7 +1,7 @@
" Vim tutor support file
" Author: Eduardo F. Amatria <eferna1@platea.pntic.mec.es>
" Maintainer: Bram Moolenaar
-" Last Change: 2019 Mar 30
+" Last Change: 2019 Nov 11
" This Vim script is used for detecting if a translation of the
" tutor file exist, i.e., a tutor.xx file, where xx is the language.
@@ -108,7 +108,7 @@ endif
" The Turkish tutor is available in two encodings, guess which one to use
if s:ext =~? '\.tr'
- if &enc == "iso-8859-9"
+ if &enc == "iso-8859-9" || &enc == "cp1254"
let s:ext = ".tr.iso9"
endif
endif