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

* vsnprintf.c: Fix spelling from compliment to complement.

Patch by @agrimm. Closes GH-422.

* include/ruby/ruby.h: ditto

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43274 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
charliesome 2013-10-13 14:53:40 +00:00
parent 15798b606e
commit c4b6e96748
3 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,10 @@
2013-10-13 Andrew Grimm <andrew.j.grimm@gmail.com>
* vsnprintf.c: Fix spelling from compliment to complement.
Patch by @agrimm.
* include/ruby/ruby.h: ditto
2013-10-13 Nobuyoshi Nakada <nobu@ruby-lang.org>
* vm.c (Init_BareVM): initialize defined_module_hash here,

View file

@ -187,7 +187,7 @@ typedef char ruby_check_sizeof_voidp[SIZEOF_VOIDP == sizeof(void*) ? 1 : -1];
# ifdef HAVE_LIMITS_H
# include <limits.h>
# else
/* assuming 32bit(2's compliment) long */
/* assuming 32bit(2's complement) long */
# define LONG_MAX 2147483647
# endif
# endif

View file

@ -95,7 +95,7 @@
# ifdef HAVE_LIMITS_H
# include <limits.h>
# else
/* assuming 32bit(2's compliment) long */
/* assuming 32bit(2's complement) long */
# define LONG_MAX 2147483647
# endif
# endif