mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
io.c: remove obsolete rb_deferr global variable
This was made obsolete by r4190 back in July 2003. Furthermore, this existed less than 3 months as it was only introduced in r3782. So with absolutely no references to rb_deferr, I doubt any vim plugin would care anymore. ChangeLog: fixup indent of my previous commit, oops :X git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53492 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
18ca559da7
commit
2b26565ebb
2 changed files with 5 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
Sun Jan 10 13:41:36 2016 Eric Wong <e@80x24.org>
|
||||
|
||||
* io.c (rb_deferr): remove long obsolete global
|
||||
|
||||
Sun Jan 10 09:14:42 2016 Eric Wong <e@80x24.org>
|
||||
|
||||
* ext/psych/lib/psych/visitors/yaml_tree.rb (visit_String):
|
||||
|
|
3
io.c
3
io.c
|
@ -159,7 +159,6 @@ static VALUE rb_eEINPROGRESSWaitWritable;
|
|||
static VALUE rb_eEINPROGRESSWaitReadable;
|
||||
|
||||
VALUE rb_stdin, rb_stdout, rb_stderr;
|
||||
VALUE rb_deferr; /* rescue VIM plugin */
|
||||
static VALUE orig_stdout, orig_stderr;
|
||||
|
||||
VALUE rb_output_fs;
|
||||
|
@ -12388,7 +12387,7 @@ Init_IO(void)
|
|||
rb_stderr = prep_stdio(stderr, FMODE_WRITABLE|FMODE_SYNC, rb_cIO, "<STDERR>");
|
||||
rb_define_hooked_variable("$>", &rb_stdout, 0, stdout_setter);
|
||||
orig_stdout = rb_stdout;
|
||||
rb_deferr = orig_stderr = rb_stderr;
|
||||
orig_stderr = rb_stderr;
|
||||
|
||||
/* Holds the original stdin */
|
||||
rb_define_global_const("STDIN", rb_stdin);
|
||||
|
|
Loading…
Add table
Reference in a new issue