mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/syck/rubyext.c (syck_resolver_transfer): remove C++ style
comment (//). [ruby-core:05793] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@9176 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
f3707886d6
commit
7061186c04
4 changed files with 13 additions and 5 deletions
|
|
@ -1,3 +1,8 @@
|
||||||
|
Fri Sep 16 12:02:12 2005 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
|
* ext/syck/rubyext.c (syck_resolver_transfer): remove C++ style
|
||||||
|
comment (//). [ruby-core:05793]
|
||||||
|
|
||||||
Fri Sep 16 00:14:14 2005 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp>
|
Fri Sep 16 00:14:14 2005 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp>
|
||||||
|
|
||||||
* test/logger/test_logger.rb: unintentionally overwritten changes by
|
* test/logger/test_logger.rb: unintentionally overwritten changes by
|
||||||
|
|
|
||||||
|
|
@ -1120,8 +1120,10 @@ syck_resolver_transfer( self, type, val )
|
||||||
}
|
}
|
||||||
else if ( rb_cObject == target_class && subclass_v == Qnil )
|
else if ( rb_cObject == target_class && subclass_v == Qnil )
|
||||||
{
|
{
|
||||||
// StringValue(subclass);
|
/*
|
||||||
// printf( "No class: %s\n", RSTRING(subclass)->ptr );
|
StringValue(subclass);
|
||||||
|
printf( "No class: %s\n", RSTRING(subclass)->ptr );
|
||||||
|
*/
|
||||||
target_class = cYObject;
|
target_class = cYObject;
|
||||||
type = subclass;
|
type = subclass;
|
||||||
subclass = cYObject;
|
subclass = cYObject;
|
||||||
|
|
|
||||||
|
|
@ -30,4 +30,5 @@ test/unit.rb
|
||||||
thread.rb
|
thread.rb
|
||||||
thwait.rb
|
thwait.rb
|
||||||
time.rb
|
time.rb
|
||||||
|
uri
|
||||||
yaml.rb
|
yaml.rb
|
||||||
|
|
|
||||||
|
|
@ -146,7 +146,7 @@ sign_bits(base, p)
|
||||||
*
|
*
|
||||||
* Flag | Applies to | Meaning
|
* Flag | Applies to | Meaning
|
||||||
* ---------+--------------+-----------------------------------------
|
* ---------+--------------+-----------------------------------------
|
||||||
* space | bdeEfgGioxXu | Leave a space at the start of
|
* space | bdeEfgGiouxX | Leave a space at the start of
|
||||||
* | | positive numbers.
|
* | | positive numbers.
|
||||||
* ---------+--------------+-----------------------------------------
|
* ---------+--------------+-----------------------------------------
|
||||||
* (digit)$ | all | Specifies the absolute argument number
|
* (digit)$ | all | Specifies the absolute argument number
|
||||||
|
|
@ -162,11 +162,11 @@ sign_bits(base, p)
|
||||||
* | | point to be added, even if no digits follow.
|
* | | point to be added, even if no digits follow.
|
||||||
* | | For `g' and 'G', do not remove trailing zeros.
|
* | | For `g' and 'G', do not remove trailing zeros.
|
||||||
* ---------+--------------+-----------------------------------------
|
* ---------+--------------+-----------------------------------------
|
||||||
* + | bdeEfgGioxXu | Add a leading plus sign to positive numbers.
|
* + | bdeEfgGiouxX | Add a leading plus sign to positive numbers.
|
||||||
* ---------+--------------+-----------------------------------------
|
* ---------+--------------+-----------------------------------------
|
||||||
* - | all | Left-justify the result of this conversion.
|
* - | all | Left-justify the result of this conversion.
|
||||||
* ---------+--------------+-----------------------------------------
|
* ---------+--------------+-----------------------------------------
|
||||||
* 0 (zero) | all | Pad with zeros, not spaces.
|
* 0 (zero) | bdeEfgGiouxX | Pad with zeros, not spaces.
|
||||||
* ---------+--------------+-----------------------------------------
|
* ---------+--------------+-----------------------------------------
|
||||||
* * | all | Use the next argument as the field width.
|
* * | all | Use the next argument as the field width.
|
||||||
* | | If negative, left-justify the result. If the
|
* | | If negative, left-justify the result. If the
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue