ruby-changes:34703
From: svn <ko1@a...>
Date: Fri, 11 Jul 2014 20:51:12 +0900 (JST)
Subject: [ruby-changes:34703] svn:r46786 (trunk): * remove trailing spaces.
svn 2014-07-11 20:51:04 +0900 (Fri, 11 Jul 2014) New Revision: 46786 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=46786 Log: * remove trailing spaces. Modified files: trunk/ext/win32ole/win32ole.c Index: ext/win32ole/win32ole.c =================================================================== --- ext/win32ole/win32ole.c (revision 46785) +++ ext/win32ole/win32ole.c (revision 46786) @@ -9162,11 +9162,11 @@ folevariant_set_value(VALUE self, VALUE https://github.com/ruby/ruby/blob/trunk/ext/win32ole/win32ole.c#L9162 * WIN32OLE_RECORD#to_h #=> Ruby Hash object. * * Returns Ruby Hash object which represents VT_RECORD variable. - * The keys of Hash object are member names of VT_RECORD OLE variable and + * The keys of Hash object are member names of VT_RECORD OLE variable and * the values of Hash object are values of VT_RECORD OLE variable. * */ -static VALUE +static VALUE fole_record_to_h(VALUE self) { return rb_ivar_get(self, rb_intern("fields")); @@ -9178,7 +9178,7 @@ fole_record_to_h(VALUE self) https://github.com/ruby/ruby/blob/trunk/ext/win32ole/win32ole.c#L9178 * * Returns the type name of VT_RECORD OLE variable. */ -static VALUE +static VALUE fole_record_typename(VALUE self) { return rb_ivar_get(self, rb_intern("typename")); @@ -9193,7 +9193,7 @@ fole_record_typename(VALUE self) https://github.com/ruby/ruby/blob/trunk/ext/win32ole/win32ole.c#L9193 static VALUE fole_record_method_missing(VALUE self, VALUE member) { - + VALUE fields = rb_ivar_get(self, rb_intern("fields")); VALUE val = rb_hash_aref(fields, rb_to_id(member)); if (val != Qnil) { -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/