]> git.pld-linux.org Git - packages/vim.git/blame - 7.1.101
- typo
[packages/vim.git] / 7.1.101
CommitLineData
c0949972
ER
1To: vim-dev@vim.org
2Subject: patch 7.1.101
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 7.1.101
11Problem: Ruby: The Buffer.line= method does not work.
12Solution: Add the "self" argument to set_current_line(). (Jonathan Hankins)
13Files: src/if_ruby.c
14
15
16*** ../vim-7.1.100/src/if_ruby.c Sat May 12 15:01:49 2007
17--- src/if_ruby.c Mon Sep 10 10:40:38 2007
18***************
19*** 789,795 ****
20 return get_buffer_line(curbuf, curwin->w_cursor.lnum);
21 }
22
23! static VALUE set_current_line(VALUE str)
24 {
25 return set_buffer_line(curbuf, curwin->w_cursor.lnum, str);
26 }
27--- 789,795 ----
28 return get_buffer_line(curbuf, curwin->w_cursor.lnum);
29 }
30
31! static VALUE set_current_line(VALUE self, VALUE str)
32 {
33 return set_buffer_line(curbuf, curwin->w_cursor.lnum, str);
34 }
35*** ../vim-7.1.100/src/version.c Thu Sep 6 17:38:06 2007
36--- src/version.c Thu Sep 13 14:59:47 2007
37***************
38*** 668,669 ****
39--- 668,671 ----
40 { /* Add new patch number below this line */
41+ /**/
42+ 101,
43 /**/
44
45--
46The question is: What do you do with your life?
47The wrong answer is: Become the richest guy in the graveyard.
48 (billionaire and Oracle founder Larry Ellison)
49
50 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
51/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
52\\\ download, build and distribute -- http://www.A-A-P.org ///
53 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.047388 seconds and 4 git commands to generate.