]> granicus.if.org Git - vim/commitdiff
updated for version 7.2-066 v7.2.066
authorBram Moolenaar <Bram@vim.org>
Tue, 9 Dec 2008 09:57:49 +0000 (09:57 +0000)
committerBram Moolenaar <Bram@vim.org>
Tue, 9 Dec 2008 09:57:49 +0000 (09:57 +0000)
runtime/doc/eval.txt
src/eval.c
src/version.c

index 92d7a0f0537edec7bd3878a28ac3dfb65f60f890..cc0f79134e3703fb14c4b901a1f9a03cda6b1ef8 100644 (file)
@@ -5841,7 +5841,8 @@ mouse_netterm             Compiled with support for netterm mouse.
 mouse_pterm            Compiled with support for qnx pterm mouse.
 mouse_sysmouse         Compiled with support for sysmouse (*BSD console mouse)
 mouse_xterm            Compiled with support for xterm mouse.
-multi_byte             Compiled with support for editing Korean et al.
+multi_byte             Compiled with support for 'encoding'
+multi_byte_encoding    'encoding' is set to a multi-byte encoding.
 multi_byte_ime         Compiled with support for IME input method.
 multi_lang             Compiled with support for multiple languages.
 mzscheme               Compiled with MzScheme interface |mzscheme|.
index 75c4099bf69aaf78958a0f4f8c9ea9259bd2957d..a242ebf584f98ba9514177d3b96cbe4c93809178 100644 (file)
@@ -11842,6 +11842,10 @@ f_has(argvars, rettv)
            n = has_patch(atoi((char *)name + 5));
        else if (STRICMP(name, "vim_starting") == 0)
            n = (starting != 0);
+#ifdef FEAT_MBYTE
+       else if (STRICMP(name, "multi_byte_encoding") == 0)
+           n = has_mbyte;
+#endif
 #if defined(FEAT_BEVAL) && defined(FEAT_GUI_W32)
        else if (STRICMP(name, "balloon_multiline") == 0)
            n = multiline_balloon_available();
index 000aa18ef602e06c7d35cf7e82b40ecc38ace208..10b42d152f4dab1a6b347c7988752c8e5a7f55ae 100644 (file)
@@ -676,6 +676,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    66,
 /**/
     65,
 /**/