summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-04-04 15:42:16 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-04-04 15:42:16 +0000
commit233a94b91e918b999135cf374de984d132246848 (patch)
treef14a90480ccef2cd9b18f8be775037eed57aa854
parentf67fc8a43f781585da51474c3e2a1356a8f0524e (diff)
* error.c (rb_notimplement), io.c (pipe_open): removed definite
articles and UNIX manual section from messages. [ruby-dev:30690] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@12147 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--error.c2
-rw-r--r--io.c2
-rw-r--r--version.h6
4 files changed, 10 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 7669b12ac7..f553958e9d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Apr 5 00:42:48 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * error.c (rb_notimplement), io.c (pipe_open): removed definite
+ articles and UNIX manual section from messages. [ruby-dev:30690]
+
Wed Apr 4 17:09:17 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
* io.c (pipe_open): refined the message of NotImplementedError.
diff --git a/error.c b/error.c
index 1b23d433c8..44e709276f 100644
--- a/error.c
+++ b/error.c
@@ -1083,7 +1083,7 @@ void
rb_notimplement()
{
rb_raise(rb_eNotImpError,
- "the %s() function is unimplemented on this machine",
+ "%s() function is unimplemented on this machine",
rb_id2name(ruby_frame->last_func));
}
diff --git a/io.c b/io.c
index 3284ee6205..8f8dfcdf2e 100644
--- a/io.c
+++ b/io.c
@@ -3044,7 +3044,7 @@ pipe_open(pstr, pname, mode)
#if defined(DJGPP) || defined(__human68k__) || defined(__VMS) || defined(_WIN32)
if (!doexec) {
rb_raise(rb_eNotImpError,
- "The fork(2) function is unimplemented on this machine");
+ "fork() function is unimplemented on this machine");
}
#endif
diff --git a/version.h b/version.h
index 99ae81f275..2e304d09d9 100644
--- a/version.h
+++ b/version.h
@@ -1,7 +1,7 @@
#define RUBY_VERSION "1.8.6"
-#define RUBY_RELEASE_DATE "2007-04-04"
+#define RUBY_RELEASE_DATE "2007-04-05"
#define RUBY_VERSION_CODE 186
-#define RUBY_RELEASE_CODE 20070404
+#define RUBY_RELEASE_CODE 20070405
#define RUBY_PATCHLEVEL 5000
#define RUBY_VERSION_MAJOR 1
@@ -9,7 +9,7 @@
#define RUBY_VERSION_TEENY 6
#define RUBY_RELEASE_YEAR 2007
#define RUBY_RELEASE_MONTH 4
-#define RUBY_RELEASE_DAY 4
+#define RUBY_RELEASE_DAY 5
RUBY_EXTERN const char ruby_version[];
RUBY_EXTERN const char ruby_release_date[];