aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--README.EXT10
-rw-r--r--README.EXT.ja6
3 files changed, 18 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 534ffeb458..b27f63505b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Sun Apr 28 12:38:04 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * README.EXT: correct method name to be used. [Bug #7982]
+
+ * README.EXT.ja: add notes too.
+
Sun Apr 28 10:35:00 2013 Zachary Scott <zachary@zacharyscott.net>
* object.c: With feedback from Steve Klabnik, reverted a change to
diff --git a/README.EXT b/README.EXT
index 404cea7ca2..6a622d2b11 100644
--- a/README.EXT
+++ b/README.EXT
@@ -196,8 +196,9 @@ rb_vsprintf(const char *format, va_list ap) ::
Creates a new Ruby string with printf(3) format.
- Note: In the format string, %i is used for Object#inspect output (and related
- argument must be a VALUE). For integers in format strings, use %d.
+ Note: In the format string, %i is used for Object#to_s (or Object#inspect if
+ '+' flag is set) output (and related argument must be a VALUE). For integers
+ in format strings, use %d.
rb_str_cat(VALUE str, const char *ptr, long len) ::
@@ -1369,8 +1370,9 @@ void rb_bug(const char *fmt, ...) ::
called under the situation caused by the bug in the interpreter. No
exception handling nor ensure execution will be done.
-Note: In the fmt string message, %i is used for Object#inspect output (and
-related argument must be a VALUE). For integers in format strings, use %d.
+Note: In the format string, %i is used for Object#to_s (or Object#inspect if
+'+' flag is set) output (and related argument must be a VALUE). For integers
+in format strings, use %d.
== Initialize and Start the Interpreter
diff --git a/README.EXT.ja b/README.EXT.ja
index 0b891e25bc..7e6342ae60 100644
--- a/README.EXT.ja
+++ b/README.EXT.ja
@@ -224,6 +224,9 @@ rb_vsprintf(const char *format, va_list ap)
Cの文字列formatと続く引数をprintf(3)のフォーマットにしたがって
整形し,Rubyの文字列を生成する.
+ 注意: %iはObject#to_s('+'フラグが指定されているときはObject#inspect)を
+ 使ったVALUEの出力に使用されているため,整数には%dを使用すること.
+
rb_str_cat(VALUE str, const char *ptr, long len)
Rubyの文字列strにlenバイトの文字列ptrを追加する.
@@ -1381,6 +1384,9 @@ void rb_bug(const char *fmt, ...) ::
状況の時呼ぶ.インタープリタはコアダンプし直ちに終了する.
例外処理は一切行なわれない.
+注意: %iはObject#to_s('+'フラグが指定されているときはObject#inspect)を
+使ったVALUEの出力に使用されているため,整数には%dを使用すること.
+
== Rubyの初期化・実行
Rubyをアプリケーションに埋め込む場合には以下のインタフェース