diff options
author | Alexander Gramiak <agrambot@gmail.com> | 2019-03-23 11:19:40 -0600 |
---|---|---|
committer | Alexander Gramiak <agrambot@gmail.com> | 2019-04-26 16:10:49 -0600 |
commit | ff4e31fa328a2cee5197beb20f068eb021712b5c (patch) | |
tree | d49388dd87c3cf11f6231baae8a85089b3344c0f /src/w32fns.c | |
parent | 86b6e91091ba14edb4811427fec8fe194f6520d4 (diff) | |
download | emacs-ff4e31fa328a2cee5197beb20f068eb021712b5c.tar.gz emacs-ff4e31fa328a2cee5197beb20f068eb021712b5c.tar.bz2 emacs-ff4e31fa328a2cee5197beb20f068eb021712b5c.zip |
Rename generic x_* procedures in xdisp.c
* src/xdisp.c (x_consider_frame_title, x_get_glyph_overhangs)
(x_produce_glyphs, x_write_glyphs, x_insert_glyphs)
(x_clear_end_of_line), x_fix_overlapping_area)
(x_update_cursor, x_clear_cursor, x_clear_window_mouse_face)
(x_draw_vertical_border, x_draw_right_divider, x_draw_bottom_divider)
(x_intersect_rectangles): Rename with a gui prefix to indicate
non-X-specific functionality.
* src/composite.c:
* src/dispextern.h:
* src/nsfns.m:
* src/nsterm.m:
* src/w32fns.c:
* src/w32term.c:
* src/window.c:
* src/xfns.c:
* src/xterm.c: Use the renamed procedures.
Diffstat (limited to 'src/w32fns.c')
-rw-r--r-- | src/w32fns.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/w32fns.c b/src/w32fns.c index af82b463059..814998f5f2f 100644 --- a/src/w32fns.c +++ b/src/w32fns.c @@ -1514,8 +1514,8 @@ x_set_cursor_color (struct frame *f, Lisp_Object arg, Lisp_Object oldval) if (FRAME_VISIBLE_P (f)) { - x_update_cursor (f, 0); - x_update_cursor (f, 1); + gui_update_cursor (f, 0); + gui_update_cursor (f, 1); } } |