summaryrefslogtreecommitdiff
path: root/data/vim/patches/8.1.0879
blob: 31b894b5cab436a7510b661f3f12a9832dfa6a07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
To: vim_dev@googlegroups.com
Subject: Patch 8.1.0879
Fcc: outbox
From: Bram Moolenaar <Bram@moolenaar.net>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
------------

Patch 8.1.0879
Problem:    MS-Windows: temp name encoding can be wrong.
Solution:   Convert from active code page to 'encoding'. (Ken Takata,
            closes #3520, closes #1698)
Files:	    src/fileio.c


*** ../vim-8.1.0878/src/fileio.c	2019-01-26 16:20:44.264683546 +0100
--- src/fileio.c	2019-02-08 12:17:47.736584605 +0100
***************
*** 7470,7475 ****
--- 7470,7493 ----
  	for (p = retval; *p; ++p)
  	    if (*p == '\\')
  		*p = '/';
+ 
+ #if defined(FEAT_MBYTE) && defined(WIN3264)
+     if (enc_utf8)
+     {
+ 	int	len;
+ 	char_u  *pp = NULL;
+ 
+ 	// Convert from active codepage to UTF-8 since mch_call_shell()
+ 	// converts command-line to wide string from encoding.
+ 	acp_to_enc(retval, (int)STRLEN(retval), &pp, &len);
+ 	if (pp != NULL)
+ 	{
+ 	    vim_free(retval);
+ 	    return pp;
+ 	}
+     }
+ #endif
+ 
      return retval;
  
  # else /* WIN3264 */
*** ../vim-8.1.0878/src/version.c	2019-02-07 21:27:11.002137464 +0100
--- src/version.c	2019-02-08 12:20:40.059450474 +0100
***************
*** 785,786 ****
--- 785,788 ----
  {   /* Add new patch number below this line */
+ /**/
+     879,
  /**/

-- 
Yesterday, all my deadlines seemed so far away
now it looks as though it's freeze in four days
oh I believe in cvs..
    [ CVS log "Beatles style" for FreeBSD ports/INDEX, Satoshi Asami ]

 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///