diff options
| author | Paul Eggert | 2011-03-09 09:30:24 -0800 |
|---|---|---|
| committer | Paul Eggert | 2011-03-09 09:30:24 -0800 |
| commit | 28f1c698135e245c0e09e6c5314b4799aca9378d (patch) | |
| tree | 26071936c7713b2b16a145099ae375aec515fe62 /src | |
| parent | a6067996d8aa14819a0cdfdb8596b3252f9f2caa (diff) | |
| download | emacs-28f1c698135e245c0e09e6c5314b4799aca9378d.tar.gz emacs-28f1c698135e245c0e09e6c5314b4799aca9378d.zip | |
* xterm.c (x_delete_glyphs, x_ins_del_lines): Mark with NO_RETURN.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 1 | ||||
| -rw-r--r-- | src/xterm.c | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 2dc9d34f290..3381fa28aca 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -17,6 +17,7 @@ | |||
| 17 | (x_error_catcher, x_connection_closed, x_error_handler): | 17 | (x_error_catcher, x_connection_closed, x_error_handler): |
| 18 | (x_error_quitter, xembed_send_message, x_iconify_frame): | 18 | (x_error_quitter, xembed_send_message, x_iconify_frame): |
| 19 | (my_log_handler): Rename locals to avoid shadowing. | 19 | (my_log_handler): Rename locals to avoid shadowing. |
| 20 | (x_delete_glyphs, x_ins_del_lines): Mark with NO_RETURN. | ||
| 20 | 21 | ||
| 21 | * xfaces.c (clear_face_cache, Fx_list_fonts, Fface_font): Rename | 22 | * xfaces.c (clear_face_cache, Fx_list_fonts, Fface_font): Rename |
| 22 | or move locals to avoid shadowing. | 23 | or move locals to avoid shadowing. |
diff --git a/src/xterm.c b/src/xterm.c index c542f0d9f29..e218eb95285 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -317,6 +317,7 @@ static void XTframe_up_to_date (struct frame *); | |||
| 317 | static void XTset_terminal_modes (struct terminal *); | 317 | static void XTset_terminal_modes (struct terminal *); |
| 318 | static void XTreset_terminal_modes (struct terminal *); | 318 | static void XTreset_terminal_modes (struct terminal *); |
| 319 | static void x_clear_frame (struct frame *); | 319 | static void x_clear_frame (struct frame *); |
| 320 | static void x_ins_del_lines (struct frame *, int, int) NO_RETURN; | ||
| 320 | static void frame_highlight (struct frame *); | 321 | static void frame_highlight (struct frame *); |
| 321 | static void frame_unhighlight (struct frame *); | 322 | static void frame_unhighlight (struct frame *); |
| 322 | static void x_new_focus_frame (struct x_display_info *, struct frame *); | 323 | static void x_new_focus_frame (struct x_display_info *, struct frame *); |
| @@ -873,6 +874,7 @@ static void x_draw_glyph_string_foreground (struct glyph_string *); | |||
| 873 | static void x_draw_composite_glyph_string_foreground (struct glyph_string *); | 874 | static void x_draw_composite_glyph_string_foreground (struct glyph_string *); |
| 874 | static void x_draw_glyph_string_box (struct glyph_string *); | 875 | static void x_draw_glyph_string_box (struct glyph_string *); |
| 875 | static void x_draw_glyph_string (struct glyph_string *); | 876 | static void x_draw_glyph_string (struct glyph_string *); |
| 877 | static void x_delete_glyphs (struct frame *, int) NO_RETURN; | ||
| 876 | static void x_compute_glyph_string_overhangs (struct glyph_string *); | 878 | static void x_compute_glyph_string_overhangs (struct glyph_string *); |
| 877 | static void x_set_cursor_gc (struct glyph_string *); | 879 | static void x_set_cursor_gc (struct glyph_string *); |
| 878 | static void x_set_mode_line_face_gc (struct glyph_string *); | 880 | static void x_set_mode_line_face_gc (struct glyph_string *); |