mirror of
https://github.com/ruby/ruby.git
synced 2025-09-18 18:13:58 +02:00
* ext/gdbm/gdbm.c (fgdbm_select): fixed rdoc. a patch from Justin
Collins in [ruby-core:26050]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@25300 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
d13255aa40
commit
5d1364df50
3 changed files with 10 additions and 5 deletions
|
@ -1,3 +1,8 @@
|
|||
Sun Oct 11 15:54:52 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* ext/gdbm/gdbm.c (fgdbm_select): fixed rdoc. a patch from Justin
|
||||
Collins in [ruby-core:26050].
|
||||
|
||||
Fri Oct 9 02:39:47 2009 Marc-Andre Lafortune <ruby-core@marc-andre.ca>
|
||||
|
||||
* ext/curses/curses.c: Many functions of module Curses could cause a
|
||||
|
|
|
@ -483,9 +483,9 @@ fgdbm_indexes(argc, argv, obj)
|
|||
|
||||
/*
|
||||
* call-seq:
|
||||
* gdbm.select { |value| block } -> array
|
||||
* gdbm.select { |key, value| block } -> array
|
||||
*
|
||||
* Returns a new array of all values of the database for which _block_
|
||||
* Returns a new array of all key-value pairs of the database for which _block_
|
||||
* evaluates to true.
|
||||
*/
|
||||
static VALUE
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#define RUBY_VERSION "1.8.8"
|
||||
#define RUBY_RELEASE_DATE "2009-10-09"
|
||||
#define RUBY_RELEASE_DATE "2009-10-11"
|
||||
#define RUBY_VERSION_CODE 188
|
||||
#define RUBY_RELEASE_CODE 20091009
|
||||
#define RUBY_RELEASE_CODE 20091011
|
||||
#define RUBY_PATCHLEVEL -1
|
||||
|
||||
#define RUBY_VERSION_MAJOR 1
|
||||
|
@ -9,7 +9,7 @@
|
|||
#define RUBY_VERSION_TEENY 8
|
||||
#define RUBY_RELEASE_YEAR 2009
|
||||
#define RUBY_RELEASE_MONTH 10
|
||||
#define RUBY_RELEASE_DAY 9
|
||||
#define RUBY_RELEASE_DAY 11
|
||||
|
||||
#ifdef RUBY_EXTERN
|
||||
RUBY_EXTERN const char ruby_version[];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue