diff options
author | Eli Zaretskii <eliz@gnu.org> | 2014-10-11 15:24:30 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2014-10-11 15:24:30 +0300 |
commit | 8cc6103196a26b972653f200cf7a7992c534b13a (patch) | |
tree | bb5b5d92aa0499300425bfd4da9aefc3983a44f4 /src/dispextern.h | |
parent | 4eb60cd3a157ff99d380028687e07f01354c65fc (diff) | |
download | emacs-8cc6103196a26b972653f200cf7a7992c534b13a.tar.gz |
Rename type_after_w1 into type_after_wn.
Diffstat (limited to 'src/dispextern.h')
-rw-r--r-- | src/dispextern.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dispextern.h b/src/dispextern.h index cfe834e572a..d476656e1b2 100644 --- a/src/dispextern.h +++ b/src/dispextern.h @@ -1915,7 +1915,7 @@ typedef enum { NEUTRAL_DIR, L2R, R2L } bidi_dir_t; struct bidi_saved_info { ptrdiff_t bytepos, charpos; /* character's buffer position */ bidi_type_t type; /* character's resolved bidi type */ - bidi_type_t type_after_w1; /* original type of the character, after W1 */ + bidi_type_t type_after_wn; /* original type of the character, after W1 */ bidi_type_t orig_type; /* type as we found it in the buffer */ bool_bf bracket_resolved : 1; /* 1 if type was BPA-resolved */ }; @@ -1955,10 +1955,10 @@ struct bidi_it { ptrdiff_t nchars; /* its "length", usually 1; it's > 1 for a run of characters covered by a display string */ ptrdiff_t ch_len; /* its length in bytes */ - bidi_type_t type; /* bidi type of this character, after + bidi_type_t type; /* final bidi type of this character, after resolving weak and neutral types */ - bidi_type_t type_after_w1; /* original type, after overrides and W1 */ - bidi_type_t orig_type; /* original type, as found in the buffer */ + bidi_type_t type_after_wn; /* bidi type after overrides and Wn */ + bidi_type_t orig_type; /* original bidi type, as found in the buffer */ char resolved_level; /* final resolved level of this character */ char isolate_level; /* count of isolate initiators unmatched by PDI */ ptrdiff_t invalid_levels; /* how many PDFs to ignore */ |