diff options
author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-09-07 09:13:16 +0000 |
---|---|---|
committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-09-07 09:13:16 +0000 |
commit | c0bec2fae1d6adf77c853457942217e89ea85bcf (patch) | |
tree | 2af692a42271c5d32cfa8bc09b9b1fbea6a0b172 /transcode_data.h | |
parent | 6bf5c34cf20002491423ca69dc3b0d037afaaefd (diff) |
* transcode_data.h (STR1): defined for a string up to 255 bytes.
(STR1_BYTEINDEX): defined.
(makeSTR1): defined.
* tool/transcode-tblgen.rb: generate STR1.
* transcode.c (transcode_restartable0): interpret STR1.
* enc/trans/escape.trans (fun_so_escape_xml_chref): removed. STR1 is
used instead.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19214 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'transcode_data.h')
-rw-r--r-- | transcode_data.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/transcode_data.h b/transcode_data.h index 8729b3b4e9..4587815c67 100644 --- a/transcode_data.h +++ b/transcode_data.h @@ -34,6 +34,10 @@ #define FUNsi (PType 0x0D) /* function from start to info */ #define FUNio (PType 0x0E) /* function from info to output */ #define FUNso (PType 0x0F) /* function from start to output */ +#define STR1 (PType 0x11) /* string up to 255 bytes: 1byte length + content */ + +#define STR1_BYTEINDEX(w) ((w) >> 6) +#define makeSTR1(bi) (((bi) << 6) | STR1) #define o1(b1) (PType((((unsigned char)(b1))<<8)|ONEbt)) #define o2(b1,b2) (PType((((unsigned char)(b1))<<8)|(((unsigned char)(b2))<<16)|TWObt)) |