]> git.pld-linux.org Git - packages/vim.git/blame - 6.2.294
- removed conflict with 6.2.259
[packages/vim.git] / 6.2.294
CommitLineData
34eabb99
AG
1To: vim-dev@vim.org
2Subject: Patch 6.2.294 (extra)
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=ISO-8859-1
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 6.2.294 (extra)
11Problem: Mac: Cannot use modifiers with Space, Tab, Enter and Escape.
12Solution: Handle all modifiers for these keys. (Eckehard Berns)
13Files: src/gui_mac.c
14
15
16*** ../vim-6.2.293/src/gui_mac.c Wed Feb 25 13:13:26 2004
17--- src/gui_mac.c Thu Feb 26 22:24:26 2004
18***************
19*** 2153,2159 ****
20
21 /* Add the modifier to the input bu if needed */
22 /* Do not want SHIFT-A or CTRL-A with modifier */
23! if (!IS_SPECIAL(key_char))
24 {
25 #if 1
26 /* Clear modifiers when only one modifier is set */
27--- 2153,2164 ----
28
29 /* Add the modifier to the input bu if needed */
30 /* Do not want SHIFT-A or CTRL-A with modifier */
31! if (!IS_SPECIAL(key_char)
32! && key_sym != vk_Space
33! && key_sym != vk_Tab
34! && key_sym != vk_Return
35! && key_sym != vk_Enter
36! && key_sym != vk_Esc)
37 {
38 #if 1
39 /* Clear modifiers when only one modifier is set */
40*** ../vim-6.2.293/src/version.c Thu Feb 26 18:16:35 2004
41--- src/version.c Sat Feb 28 15:29:05 2004
42***************
43*** 639,640 ****
44--- 639,642 ----
45 { /* Add new patch number below this line */
46+ /**/
47+ 294,
48 /**/
49
50--
51FATHER: One day, lad, all this will be yours ...
52PRINCE: What - the curtains?
53 "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
54
55 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
56/// Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
57\\\ Project leader for A-A-P -- http://www.A-A-P.org ///
58 \\\ Buy at Amazon and help AIDS victims -- http://ICCF.nl/click1.html ///
This page took 0.02747 seconds and 4 git commands to generate.