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

merge revision(s) 17644:

* math.c (domain_check): fix preprocess condition.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_7@17805 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
shyouhei 2008-07-02 09:26:29 +00:00
parent 456042c7c7
commit 13d490723c
3 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
Wed Jul 2 18:26:20 2008 Tanaka Akira <akr@fsij.org>
* math.c (domain_check): fix preprocess condition.
Wed Jul 2 18:22:52 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
* lib/tmpdir.rb (@@systmpdir): prior LOCAL_APPDATA if possible, and

2
math.c
View file

@ -34,7 +34,7 @@ domain_check(x, msg)
if (isnan(x)) {
#if defined(EDOM)
errno = EDOM;
#elif define(ERANGE)
#elif defined(ERANGE)
errno = ERANGE;
#endif
continue;

View file

@ -2,7 +2,7 @@
#define RUBY_RELEASE_DATE "2008-07-02"
#define RUBY_VERSION_CODE 187
#define RUBY_RELEASE_CODE 20080702
#define RUBY_PATCHLEVEL 42
#define RUBY_PATCHLEVEL 43
#define RUBY_VERSION_MAJOR 1
#define RUBY_VERSION_MINOR 8