]> granicus.if.org Git - vim/commitdiff
patch 8.2.2915: MS-Windows: when using "default" for encoding utf-8 is used v8.2.2915
authorK.Takata <kentkt@csc.jp>
Mon, 31 May 2021 16:40:49 +0000 (18:40 +0200)
committerBram Moolenaar <Bram@vim.org>
Mon, 31 May 2021 16:40:49 +0000 (18:40 +0200)
Problem:    MS-Windows: when using "default" for encoding utf-8 is used.
Solution:   Use the system encoding. (Ken Takata, closes #8300)

runtime/doc/options.txt
src/mbyte.c
src/version.c

index b2b79cb081b4819f28058b4f570938d01f3ae058..d3adbd0c90f9e7f1c7189a7e2c96b19a1a228614 100644 (file)
@@ -3116,9 +3116,10 @@ A jump table for the options with a short description can be found at |Q_op|.
        because Vim cannot detect an error, thus the encoding is always
        accepted.
        The special value "default" can be used for the encoding from the
-       environment.  This is the default value for 'encoding'.  It is useful
-       when 'encoding' is set to "utf-8" and your environment uses a
-       non-latin1 encoding, such as Russian.
+       environment.  On MS-Windows this is the system encoding.  Otherwise
+       this is the default value for 'encoding'.  It is useful when
+       'encoding' is set to "utf-8" and your environment uses a non-latin1
+       encoding, such as Russian.
        When 'encoding' is "utf-8" and a file contains an illegal byte
        sequence it won't be recognized as UTF-8.  You can use the |8g8|
        command to find the illegal byte sequence.
index f3fdc32e8e83c8be40ecc6446e84d20d7f095921..697e58520face1d72c93d2bb3ab470736f200292 100644 (file)
@@ -4453,8 +4453,13 @@ enc_canonize(char_u *enc)
 
     if (STRCMP(enc, "default") == 0)
     {
+#ifdef MSWIN
+       // Use the system encoding, the default is always utf-8.
+       r = enc_locale();
+#else
        // Use the default encoding as it's found by set_init_1().
        r = get_encoding_default();
+#endif
        if (r == NULL)
            r = (char_u *)ENC_DFLT;
        return vim_strsave(r);
index 56ce53405393ffece8549dd7d7639a3fe778514c..858477852be23855d56c33a246ae0d60951a678b 100644 (file)
@@ -750,6 +750,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    2915,
 /**/
     2914,
 /**/