]> git.pld-linux.org Git - packages/vim.git/blame - 7.3.662
- add patches 7.3.619-743
[packages/vim.git] / 7.3.662
CommitLineData
5a088057
KK
1To: vim_dev@googlegroups.com
2Subject: Patch 7.3.662
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.3.662
11Problem: Can't build Ruby interface with Ruby 1.9.3.
12Solution: Add missing functions. (V. Ondruch)
13Files: src/if_ruby.c
14
15
16*** ../vim-7.3.661/src/if_ruby.c 2012-04-25 12:28:05.000000000 +0200
17--- src/if_ruby.c 2012-09-18 16:31:45.000000000 +0200
18***************
19*** 178,183 ****
20--- 178,186 ----
21 #define rb_hash_new dll_rb_hash_new
22 #define rb_inspect dll_rb_inspect
23 #define rb_int2inum dll_rb_int2inum
24+ #define rb_fix2int dll_rb_fix2int
25+ #define rb_num2int dll_rb_num2int
26+ #define rb_num2uint dll_rb_num2uint
27 #define rb_lastline_get dll_rb_lastline_get
28 #define rb_lastline_set dll_rb_lastline_set
29 #define rb_load_protect dll_rb_load_protect
30***************
31*** 268,274 ****
32 static VALUE (*dll_rb_hash_new) (void);
33 static VALUE (*dll_rb_inspect) (VALUE);
34 static VALUE (*dll_rb_int2inum) (long);
35! static VALUE (*dll_rb_int2inum) (long);
36 static VALUE (*dll_rb_lastline_get) (void);
37 static void (*dll_rb_lastline_set) (VALUE);
38 static void (*dll_rb_load_protect) (VALUE, int, int*);
39--- 271,279 ----
40 static VALUE (*dll_rb_hash_new) (void);
41 static VALUE (*dll_rb_inspect) (VALUE);
42 static VALUE (*dll_rb_int2inum) (long);
43! static long (*dll_rb_fix2int) (VALUE);
44! static long (*dll_rb_num2int) (VALUE);
45! static unsigned long (*dll_rb_num2uint) (VALUE);
46 static VALUE (*dll_rb_lastline_get) (void);
47 static void (*dll_rb_lastline_set) (VALUE);
48 static void (*dll_rb_load_protect) (VALUE, int, int*);
49***************
50*** 377,382 ****
51--- 382,390 ----
52 {"rb_hash_new", (RUBY_PROC*)&dll_rb_hash_new},
53 {"rb_inspect", (RUBY_PROC*)&dll_rb_inspect},
54 {"rb_int2inum", (RUBY_PROC*)&dll_rb_int2inum},
55+ {"rb_fix2int", (RUBY_PROC*)&dll_rb_fix2int},
56+ {"rb_num2int", (RUBY_PROC*)&dll_rb_num2int},
57+ {"rb_num2uint", (RUBY_PROC*)&dll_rb_num2uint},
58 {"rb_lastline_get", (RUBY_PROC*)&dll_rb_lastline_get},
59 {"rb_lastline_set", (RUBY_PROC*)&dll_rb_lastline_set},
60 {"rb_load_protect", (RUBY_PROC*)&dll_rb_load_protect},
61*** ../vim-7.3.661/src/version.c 2012-09-12 20:21:38.000000000 +0200
62--- src/version.c 2012-09-18 16:35:53.000000000 +0200
63***************
64*** 721,722 ****
65--- 721,724 ----
66 { /* Add new patch number below this line */
67+ /**/
68+ 662,
69 /**/
70
71--
72FATHER: We are here today to witness the union of two young people in the
73 joyful bond of the holy wedlock. Unfortunately, one of them, my son
74 Herbert, has just fallen to his death.
75 [Murmurs from CROWD; the BRIDE smiles with relief, coughs.]
76 "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
77
78 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
79/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
80\\\ an exciting new programming language -- http://www.Zimbu.org ///
81 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.268768 seconds and 4 git commands to generate.