diff options
| author | Paul Eggert | 2011-06-12 22:15:27 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-06-12 22:15:27 -0700 |
| commit | 9910e595e7142801eb2bbf13ca37d4d10f57f25b (patch) | |
| tree | 13d4e2e09a9cb513103828a5da7101bd6027ca69 /src/dispextern.h | |
| parent | 2638320e0736eb803c9a5788fe517d3346245ff8 (diff) | |
| download | emacs-9910e595e7142801eb2bbf13ca37d4d10f57f25b.tar.gz emacs-9910e595e7142801eb2bbf13ca37d4d10f57f25b.zip | |
GLYPH_CODE_FACE returns EMACS_INT, not int.
* dispextern.h (merge_faces):
* xfaces.c (merge_faces):
* xdisp.c (get_next_display_element):
(next_element_from_display_vector): Don't assume EMACS_INT fits in int.
Diffstat (limited to 'src/dispextern.h')
| -rw-r--r-- | src/dispextern.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dispextern.h b/src/dispextern.h index 75ebc462ce4..0ededf33ac6 100644 --- a/src/dispextern.h +++ b/src/dispextern.h | |||
| @@ -3163,7 +3163,7 @@ int face_at_string_position (struct window *w, Lisp_Object string, | |||
| 3163 | EMACS_INT pos, EMACS_INT bufpos, | 3163 | EMACS_INT pos, EMACS_INT bufpos, |
| 3164 | EMACS_INT region_beg, EMACS_INT region_end, | 3164 | EMACS_INT region_beg, EMACS_INT region_end, |
| 3165 | EMACS_INT *endptr, enum face_id, int mouse); | 3165 | EMACS_INT *endptr, enum face_id, int mouse); |
| 3166 | int merge_faces (struct frame *, Lisp_Object, int, int); | 3166 | int merge_faces (struct frame *, Lisp_Object, EMACS_INT, int); |
| 3167 | int compute_char_face (struct frame *, int, Lisp_Object); | 3167 | int compute_char_face (struct frame *, int, Lisp_Object); |
| 3168 | void free_all_realized_faces (Lisp_Object); | 3168 | void free_all_realized_faces (Lisp_Object); |
| 3169 | extern Lisp_Object Qforeground_color, Qbackground_color; | 3169 | extern Lisp_Object Qforeground_color, Qbackground_color; |