mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
fix typos.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19270 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
8c2d4076f0
commit
a729be8433
2 changed files with 2 additions and 2 deletions
|
@ -53,7 +53,7 @@
|
|||
(RBASIC(obj)->flags & ~ENC_CODERANGE_MASK) | (cr))
|
||||
#define ENC_CODERANGE_CLEAR(obj) ENC_CODERANGE_SET(obj,0)
|
||||
|
||||
/* assumed ASCII compatiblity */
|
||||
/* assumed ASCII compatibility */
|
||||
#define ENC_CODERANGE_AND(a, b) \
|
||||
(a == ENC_CODERANGE_7BIT ? b : \
|
||||
a == ENC_CODERANGE_VALID ? (b == ENC_CODERANGE_7BIT ? ENC_CODERANGE_VALID : b) : \
|
||||
|
|
|
@ -265,7 +265,7 @@ VALUE rb_ull2inum(unsigned LONG_LONG);
|
|||
#define ID2SYM(x) (((VALUE)(x)<<RUBY_SPECIAL_SHIFT)|SYMBOL_FLAG)
|
||||
#define SYM2ID(x) RSHIFT((unsigned long)x,RUBY_SPECIAL_SHIFT)
|
||||
|
||||
/* special contants - i.e. non-zero and non-fixnum constants */
|
||||
/* special constants - i.e. non-zero and non-fixnum constants */
|
||||
enum ruby_special_consts {
|
||||
RUBY_Qfalse = 0,
|
||||
RUBY_Qtrue = 2,
|
||||
|
|
Loading…
Reference in a new issue