summaryrefslogtreecommitdiff
path: root/data/vim/patches/8.1.1269
blob: 1dd4fd93f88572cc4c53945668754d1fd98a4aeb (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
To: vim_dev@googlegroups.com
Subject: Patch 8.1.1269
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.1269
Problem:    MS-Windows GUI: multibyte chars with a 0x80 byte do not work when
            compiled with VIMDLL.
Solution:   Adjust the condition for fixing the input buffer. (Ken Takata,
            closes #4330)
Files:	    src/getchar.c


*** ../vim-8.1.1268/src/getchar.c	2019-05-03 15:13:53.754898750 +0200
--- src/getchar.c	2019-05-04 19:57:35.709453545 +0200
***************
*** 3095,3101 ****
  
  /*
   * Fix typed characters for use by vgetc() and check_termcode().
!  * buf[] must have room to triple the number of bytes!
   * Returns the new length.
   */
      int
--- 3095,3101 ----
  
  /*
   * Fix typed characters for use by vgetc() and check_termcode().
!  * "buf[]" must have room to triple the number of bytes!
   * Returns the new length.
   */
      int
***************
*** 3135,3148 ****
  	else
  #endif
  	if (p[0] == NUL || (p[0] == K_SPECIAL
! 		    /* timeout may generate K_CURSORHOLD */
  		    && (i < 2 || p[1] != KS_EXTRA || p[2] != (int)KE_CURSORHOLD)
  #if defined(MSWIN) && (!defined(FEAT_GUI) || defined(VIMDLL))
  # ifdef VIMDLL
! 		    && !gui.in_use
  # endif
! 		    /* Win32 console passes modifiers */
! 		    && (i < 2 || p[1] != KS_MODIFIER)
  #endif
  		    ))
  	{
--- 3135,3149 ----
  	else
  #endif
  	if (p[0] == NUL || (p[0] == K_SPECIAL
! 		    // timeout may generate K_CURSORHOLD
  		    && (i < 2 || p[1] != KS_EXTRA || p[2] != (int)KE_CURSORHOLD)
  #if defined(MSWIN) && (!defined(FEAT_GUI) || defined(VIMDLL))
+ 		    // Win32 console passes modifiers
+ 		    && (
  # ifdef VIMDLL
! 			gui.in_use ||
  # endif
! 			(i < 2 || p[1] != KS_MODIFIER))
  #endif
  		    ))
  	{
***************
*** 3154,3160 ****
  	    len += 2;
  	}
      }
!     *p = NUL;		/* add trailing NUL */
      return len;
  }
  
--- 3155,3161 ----
  	    len += 2;
  	}
      }
!     *p = NUL;		// add trailing NUL
      return len;
  }
  
*** ../vim-8.1.1268/src/version.c	2019-05-04 19:26:52.865802079 +0200
--- src/version.c	2019-05-04 19:59:19.404816473 +0200
***************
*** 769,770 ****
--- 769,772 ----
  {   /* Add new patch number below this line */
+ /**/
+     1269,
  /**/

-- 
   [Another hideous roar.]
BEDEVERE: That's it!
ARTHUR:   What?
BEDEVERE: It's The Legendary Black Beast of Aaaaarrrrrrggghhh!
                 "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD

 /// 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    ///