From 2b26565ebb1032576840d2ee6c76c703a67c3d2d Mon Sep 17 00:00:00 2001 From: normal Date: Sun, 10 Jan 2016 04:44:08 +0000 Subject: 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 --- ChangeLog | 4 ++++ io.c | 3 +-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index f1493fdf68..c2326d1626 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sun Jan 10 13:41:36 2016 Eric Wong + + * io.c (rb_deferr): remove long obsolete global + Sun Jan 10 09:14:42 2016 Eric Wong * ext/psych/lib/psych/visitors/yaml_tree.rb (visit_String): diff --git a/io.c b/io.c index 5c8a66d143..cacff40851 100644 --- a/io.c +++ b/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, ""); 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); -- cgit v1.2.3