ruby-changes:5887
From: nobu <ko1@a...>
Date: Wed, 18 Jun 2008 10:18:32 +0900 (JST)
Subject: [ruby-changes:5887] Ruby:r17395 (ruby_1_8, trunk): * ext/etc/etc.c (etc_passwd, etc_group): fixed rdoc. a patch from
nobu 2008-06-18 10:18:13 +0900 (Wed, 18 Jun 2008)
New Revision: 17395
Modified files:
branches/ruby_1_8/ChangeLog
branches/ruby_1_8/ext/etc/etc.c
branches/ruby_1_8/version.h
trunk/ChangeLog
trunk/ext/etc/etc.c
Log:
* ext/etc/etc.c (etc_passwd, etc_group): fixed rdoc. a patch from
okkez <okkez000 AT gmail.com> in [ruby-dev:35141].
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/branches/ruby_1_8/ChangeLog?r1=17395&r2=17394&diff_format=u
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ChangeLog?r1=17395&r2=17394&diff_format=u
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/branches/ruby_1_8/version.h?r1=17395&r2=17394&diff_format=u
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ext/etc/etc.c?r1=17395&r2=17394&diff_format=u
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/branches/ruby_1_8/ext/etc/etc.c?r1=17395&r2=17394&diff_format=u
Index: ChangeLog
===================================================================
--- ChangeLog (revision 17394)
+++ ChangeLog (revision 17395)
@@ -1,3 +1,8 @@
+Wed Jun 18 10:18:11 2008 Nobuyoshi Nakada <nobu@r...>
+
+ * ext/etc/etc.c (etc_passwd, etc_group): fixed rdoc. a patch from
+ okkez <okkez000 AT gmail.com> in [ruby-dev:35141].
+
Wed Jun 18 08:58:16 2008 Eric Hodel <drbrain@s...>
* lib/rubygems/*: Fix errors for 1.9.
Index: ext/etc/etc.c
===================================================================
--- ext/etc/etc.c (revision 17394)
+++ ext/etc/etc.c (revision 17395)
@@ -188,7 +188,7 @@
/* Provides a convenient Ruby iterator which executes a block for each entry
* in the /etc/passwd file.
*
- * The code block is passed an Etc::Passwd struct; see getpwent above for
+ * The code block is passed an Struct::Passwd struct; see getpwent above for
* details.
*
* Example:
@@ -392,7 +392,7 @@
/* Provides a convenient Ruby iterator which executes a block for each entry
* in the /etc/group file.
*
- * The code block is passed an Etc::Group struct; see getgrent above for
+ * The code block is passed an Struct::Group struct; see getgrent above for
* details.
*
* Example:
Index: ruby_1_8/ext/etc/etc.c
===================================================================
--- ruby_1_8/ext/etc/etc.c (revision 17394)
+++ ruby_1_8/ext/etc/etc.c (revision 17395)
@@ -196,7 +196,7 @@
/* Provides a convenient Ruby iterator which executes a block for each entry
* in the /etc/passwd file.
*
- * The code block is passed an Etc::Passwd struct; see getpwent above for
+ * The code block is passed an Struct::Passwd struct; see getpwent above for
* details.
*
* Example:
@@ -401,7 +401,7 @@
/* Provides a convenient Ruby iterator which executes a block for each entry
* in the /etc/group file.
*
- * The code block is passed an Etc::Group struct; see getgrent above for
+ * The code block is passed an Struct::Group struct; see getgrent above for
* details.
*
* Example:
Index: ruby_1_8/ChangeLog
===================================================================
--- ruby_1_8/ChangeLog (revision 17394)
+++ ruby_1_8/ChangeLog (revision 17395)
@@ -1,3 +1,8 @@
+Wed Jun 18 10:18:11 2008 Nobuyoshi Nakada <nobu@r...>
+
+ * ext/etc/etc.c (etc_passwd, etc_group): fixed rdoc. a patch from
+ okkez <okkez000 AT gmail.com> in [ruby-dev:35141].
+
Mon Jun 16 21:58:38 2008 Nobuyoshi Nakada <nobu@r...>
* ext/stringio/stringio.c (strio_each, strio_readlines): IO#each and
Index: ruby_1_8/version.h
===================================================================
--- ruby_1_8/version.h (revision 17394)
+++ ruby_1_8/version.h (revision 17395)
@@ -1,7 +1,7 @@
#define RUBY_VERSION "1.8.7"
-#define RUBY_RELEASE_DATE "2008-06-16"
+#define RUBY_RELEASE_DATE "2008-06-18"
#define RUBY_VERSION_CODE 187
-#define RUBY_RELEASE_CODE 20080616
+#define RUBY_RELEASE_CODE 20080618
#define RUBY_PATCHLEVEL 5000
#define RUBY_VERSION_MAJOR 1
@@ -9,7 +9,7 @@
#define RUBY_VERSION_TEENY 7
#define RUBY_RELEASE_YEAR 2008
#define RUBY_RELEASE_MONTH 6
-#define RUBY_RELEASE_DAY 16
+#define RUBY_RELEASE_DAY 18
#ifdef RUBY_EXTERN
RUBY_EXTERN const char ruby_version[];
--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/