diff options
author | charliesome <charliesome@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-08-05 02:51:58 +0000 |
---|---|---|
committer | charliesome <charliesome@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-08-05 02:51:58 +0000 |
commit | ac93b2840388ba674915a6eb101710774eb52ec7 (patch) | |
tree | 77711c8439ba979cc7c3be49f156b7c38aaca40a /include | |
parent | 5e98991f1bf475cedff781e3ae2f2307c884f52d (diff) | |
download | ruby-ac93b2840388ba674915a6eb101710774eb52ec7.tar.gz |
* include/ruby/encoding.h: document which user flags are used by
ENCODING_MASK for better greppability
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42381 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include')
-rw-r--r-- | include/ruby/encoding.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ruby/encoding.h b/include/ruby/encoding.h index 62e9b6642d..847d7dd810 100644 --- a/include/ruby/encoding.h +++ b/include/ruby/encoding.h @@ -26,7 +26,7 @@ RUBY_SYMBOL_EXPORT_BEGIN #define ENCODING_INLINE_MAX 1023 #define ENCODING_SHIFT (FL_USHIFT+10) -#define ENCODING_MASK (((VALUE)ENCODING_INLINE_MAX)<<ENCODING_SHIFT) +#define ENCODING_MASK (((VALUE)ENCODING_INLINE_MAX)<<ENCODING_SHIFT) /* FL_USER10|FL_USER11|FL_USER12|FL_USER13|FL_USER14|FL_USER15|FL_USER16|FL_USER17|FL_USER18|FL_USER19 */ #define ENCODING_SET_INLINED(obj,i) do {\ RBASIC(obj)->flags &= ~ENCODING_MASK;\ |