diff options
Diffstat (limited to 'src/coding.h')
| -rw-r--r-- | src/coding.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/coding.h b/src/coding.h index ec25b1d0366..6aa9a45e714 100644 --- a/src/coding.h +++ b/src/coding.h | |||
| @@ -138,9 +138,13 @@ enum iso_code_class_type | |||
| 138 | /* If set, do not encode unexpected charactes on output. */ | 138 | /* If set, do not encode unexpected charactes on output. */ |
| 139 | #define CODING_FLAG_ISO_SAFE 0x0800 | 139 | #define CODING_FLAG_ISO_SAFE 0x0800 |
| 140 | 140 | ||
| 141 | /* If set, extra latin codes (128..159) are accepted as a valid code | ||
| 142 | on input. */ | ||
| 143 | #define CODING_FLAG_ISO_LATIN_EXTRA 0x1000 | ||
| 144 | |||
| 141 | /* A character to be produced on output if encoding of the original | 145 | /* A character to be produced on output if encoding of the original |
| 142 | character is prohibited by CODING_FLAG_ISO_SAFE. */ | 146 | character is prohibited by CODING_FLAG_ISO_SAFE. */ |
| 143 | #define CODING_INHIBIT_CHARACTER_SUBSTITUTION 077 /* `?' */ | 147 | #define CODING_INHIBIT_CHARACTER_SUBSTITUTION 077 /* 077 == `?' */ |
| 144 | 148 | ||
| 145 | /* Structure of the field `spec.iso2022' in the structure `coding_system'. */ | 149 | /* Structure of the field `spec.iso2022' in the structure `coding_system'. */ |
| 146 | struct iso2022_spec | 150 | struct iso2022_spec |