diff options
author | Miles Bader <miles@gnu.org> | 2007-08-13 13:48:35 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2007-08-13 13:48:35 +0000 |
commit | 8469473acf1f2153f0fd53e2489e0a2238391b0b (patch) | |
tree | 417e34ba93123ca0a872364728025022d2aa9817 /src/charset.h | |
parent | 3779fc6877ad8511f7369bb900734c213176809f (diff) | |
parent | 1b533623e21dd20ec8fb05285cdc47398a5619a1 (diff) | |
download | emacs-8469473acf1f2153f0fd53e2489e0a2238391b0b.tar.gz |
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 846-851)
- Update from CVS
- Merge from emacs--rel--22
* emacs--rel--22 (patch 88-92)
- Update from CVS
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 242-244)
- Update from CVS
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-246
Diffstat (limited to 'src/charset.h')
-rw-r--r-- | src/charset.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/charset.h b/src/charset.h index 1b5fba67064..6d34a5feea3 100644 --- a/src/charset.h +++ b/src/charset.h @@ -192,13 +192,13 @@ struct charset version. Otherwise, -1. */ int emacs_mule_id; - /* Nonzero iff the charset is compatible with ASCII. */ + /* Nonzero if the charset is compatible with ASCII. */ int ascii_compatible_p; - /* Nonzero iff the charset is supplementary. */ + /* Nonzero if the charset is supplementary. */ int supplementary_p; - /* Nonzero iff all the code points are representable by Lisp_Int. */ + /* Nonzero if all the code points are representable by Lisp_Int. */ int compact_codes_p; /* The method for encoding/decoding characters of the charset. */ @@ -332,7 +332,7 @@ extern struct charset *emacs_mule_charset[256]; (CHARSET_ATTR_DEUNIFIER (CHARSET_ATTRIBUTES (charset))) -/* Nonzero iff OBJ is a valid charset symbol. */ +/* Nonzero if OBJ is a valid charset symbol. */ #define CHARSETP(obj) (CHARSET_SYMBOL_HASH_INDEX (obj) >= 0) /* Check if X is a valid charset symbol. If not, signal an error. */ @@ -479,7 +479,7 @@ extern int iso_charset_table[ISO_MAX_DIMENSION][ISO_MAX_CHARS][ISO_MAX_FINAL]; #define ISO_CHARSET_TABLE(dimension, chars_96, final) \ iso_charset_table[(dimension) - 1][(chars_96)][(final)] -/* Nonzero iff the charset who has FAST_MAP may contain C. */ +/* Nonzero if the charset who has FAST_MAP may contain C. */ #define CHARSET_FAST_MAP_REF(c, fast_map) \ ((c) < 0x10000 \ ? fast_map[(c) >> 10] & (1 << (((c) >> 7) & 7)) \ @@ -495,7 +495,7 @@ extern int iso_charset_table[ISO_MAX_DIMENSION][ISO_MAX_CHARS][ISO_MAX_FINAL]; -/* 1 iff CHARSET may contain the character C. */ +/* 1 if CHARSET may contain the character C. */ #define CHAR_CHARSET_P(c, charset) \ ((ASCII_CHAR_P (c) && (charset)->ascii_compatible_p) \ || ((CHARSET_UNIFIED_P (charset) \ |