1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* README.EXT: Copy note from r40505 for rb_sprintf() [Bug #7982]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40507 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
zzak 2013-04-28 00:42:10 +00:00
parent 7e70b8ac52
commit e731627526
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Sun Apr 28 09:40:00 2013 Zachary Scott <zachary@zacharyscott.net>
* README.EXT: Copy note from r40505 for rb_sprintf() [Bug #7982]
Sun Apr 28 08:28:00 2013 Zachary Scott <zachary@zacharyscott.net>
* ext/curses/curses.c: Update Curses::Window example for nicer output

View file

@ -196,6 +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.
rb_str_cat(VALUE str, const char *ptr, long len) ::
Appends len bytes of data from ptr to the Ruby string.