aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorEli Zaretskii2015-01-08 15:46:23 +0200
committerEli Zaretskii2015-01-08 15:46:23 +0200
commitdaa18b5e85559ccea84bd9e8a5f8ac57cfa73189 (patch)
treeddf5b50283f72f4bcb96b65ffa7ecba4f6817fbe /src/ChangeLog
parent0002f31af9d3511b00eaa15590ba824acea99f25 (diff)
downloademacs-daa18b5e85559ccea84bd9e8a5f8ac57cfa73189.tar.gz
emacs-daa18b5e85559ccea84bd9e8a5f8ac57cfa73189.zip
Fix fallout from "Qnil is zero" change in the display engine. (Bug#19535)
src/xdisp.c (next_element_from_c_string): Use Lisp integer zero as the object. (set_cursor_from_row, try_cursor_movement, dump_glyph) (insert_left_trunc_glyphs, append_space_for_newline) (extend_face_to_end_of_line, highlight_trailing_whitespace) (find_row_edges, ROW_GLYPH_NEWLINE_P, Fmove_point_visually) (Fbidi_resolved_levels, produce_special_glyphs) (rows_from_pos_range, mouse_face_from_buffer_pos) (note_mouse_highlight): Use nil as the object for glyphs inserted by the display engine, and test with NILP instead of INTEGERP. src/w32fns.c (Fx_show_tip): Use NILP to test for glyphs inserted by the display engine. src/xfns.c (Fx_show_tip): Use NILP to test for glyphs inserted by the display engine. src/dispextern.h (struct glyph, struct it): Update comments for the OBJECT members.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index d2ae0262171..21bdc81d797 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,26 @@
12015-01-08 Eli Zaretskii <eliz@gnu.org>
2
3 * xdisp.c (next_element_from_c_string): Use Lisp integer zero as
4 the object.
5 (set_cursor_from_row, try_cursor_movement, dump_glyph)
6 (insert_left_trunc_glyphs, append_space_for_newline)
7 (extend_face_to_end_of_line, highlight_trailing_whitespace)
8 (find_row_edges, ROW_GLYPH_NEWLINE_P, Fmove_point_visually)
9 (Fbidi_resolved_levels, produce_special_glyphs)
10 (rows_from_pos_range, mouse_face_from_buffer_pos)
11 (note_mouse_highlight): Use nil as the object for glyphs inserted
12 by the display engine, and test with NILP instead of INTEGERP.
13 (Bug#19535)
14
15 * w32fns.c (Fx_show_tip): Use NILP to test for glyphs inserted by
16 the display engine.
17
18 * xfns.c (Fx_show_tip): Use NILP to test for glyphs inserted by
19 the display engine.
20
21 * dispextern.h (struct glyph, struct it): Update comments for the
22 OBJECT members.
23
12015-01-08 Paul Eggert <eggert@cs.ucla.edu> 242015-01-08 Paul Eggert <eggert@cs.ucla.edu>
2 25
3 Port new Lisp symbol init to x86 --with-wide-int 26 Port new Lisp symbol init to x86 --with-wide-int