Skip to content

Commit

Permalink
merge revision(s) 17644:
Browse files Browse the repository at this point in the history
	* math.c (domain_check): fix preprocess condition.


git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8_7@17805 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
shyouhei committed Jul 2, 2008
1 parent 08ea382 commit 308856d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion math.c
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion version.h
Expand Up @@ -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
Expand Down

0 comments on commit 308856d

Please sign in to comment.