comparison src/dispextern.h @ 110544:bb46575a984d

Fix int/EMACS_INT in bidi.c. dispextern.h (struct bidi_saved_info): Use EMACS_INT for buffer positions.
author Eli Zaretskii <eliz@gnu.org>
date Fri, 24 Sep 2010 08:05:24 -0400
parents f67e6d84ff96
children 66f6be9b4d43
comparison
equal deleted inserted replaced
110543:a89eabac600d 110544:bb46575a984d
1768 typedef enum { NEUTRAL_DIR, L2R, R2L } bidi_dir_t; 1768 typedef enum { NEUTRAL_DIR, L2R, R2L } bidi_dir_t;
1769 1769
1770 /* Data type for storing information about characters we need to 1770 /* Data type for storing information about characters we need to
1771 remember. */ 1771 remember. */
1772 struct bidi_saved_info { 1772 struct bidi_saved_info {
1773 int bytepos, charpos; /* character's buffer position */ 1773 EMACS_INT bytepos, charpos; /* character's buffer position */
1774 bidi_type_t type; /* character's resolved bidi type */ 1774 bidi_type_t type; /* character's resolved bidi type */
1775 bidi_type_t type_after_w1; /* original type of the character, after W1 */ 1775 bidi_type_t type_after_w1; /* original type of the character, after W1 */
1776 bidi_type_t orig_type; /* type as we found it in the buffer */ 1776 bidi_type_t orig_type; /* type as we found it in the buffer */
1777 }; 1777 };
1778 1778