mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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/trunk@12147 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
8259e4aa9a
commit
f1796fdb2c
4 changed files with 25 additions and 20 deletions
|
@ -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>
|
Wed Apr 4 17:09:17 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* io.c (pipe_open): refined the message of NotImplementedError.
|
* io.c (pipe_open): refined the message of NotImplementedError.
|
||||||
|
|
2
error.c
2
error.c
|
@ -1028,7 +1028,7 @@ void
|
||||||
rb_notimplement(void)
|
rb_notimplement(void)
|
||||||
{
|
{
|
||||||
rb_raise(rb_eNotImpError,
|
rb_raise(rb_eNotImpError,
|
||||||
"The %s() function is unimplemented on this machine",
|
"%s() function is unimplemented on this machine",
|
||||||
rb_id2name(rb_frame_this_func()));
|
rb_id2name(rb_frame_this_func()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
io.c
2
io.c
|
@ -3080,7 +3080,7 @@ pipe_open(int argc, VALUE *argv, const char *mode)
|
||||||
#if !defined(HAVE_FORK)
|
#if !defined(HAVE_FORK)
|
||||||
if (!doexec) {
|
if (!doexec) {
|
||||||
rb_raise(rb_eNotImpError,
|
rb_raise(rb_eNotImpError,
|
||||||
"The fork(2) function is unimplemented on this machine");
|
"fork() function is unimplemented on this machine");
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#define RUBY_VERSION "1.9.0"
|
#define RUBY_VERSION "1.9.0"
|
||||||
#define RUBY_RELEASE_DATE "2007-04-04"
|
#define RUBY_RELEASE_DATE "2007-04-05"
|
||||||
#define RUBY_VERSION_CODE 190
|
#define RUBY_VERSION_CODE 190
|
||||||
#define RUBY_RELEASE_CODE 20070404
|
#define RUBY_RELEASE_CODE 20070405
|
||||||
#define RUBY_PATCHLEVEL 0
|
#define RUBY_PATCHLEVEL 0
|
||||||
|
|
||||||
#define RUBY_VERSION_MAJOR 1
|
#define RUBY_VERSION_MAJOR 1
|
||||||
|
@ -9,7 +9,7 @@
|
||||||
#define RUBY_VERSION_TEENY 0
|
#define RUBY_VERSION_TEENY 0
|
||||||
#define RUBY_RELEASE_YEAR 2007
|
#define RUBY_RELEASE_YEAR 2007
|
||||||
#define RUBY_RELEASE_MONTH 4
|
#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_version[];
|
||||||
RUBY_EXTERN const char ruby_release_date[];
|
RUBY_EXTERN const char ruby_release_date[];
|
||||||
|
|
Loading…
Reference in a new issue