diff options
| author | Yuuki Harano | 2021-11-14 20:27:31 +0900 |
|---|---|---|
| committer | Yuuki Harano | 2021-11-14 20:27:31 +0900 |
| commit | 30a00f14c824e5e4005a1cb6ccf2f26def19d80b (patch) | |
| tree | c1c4232181c4d091fc389d6934929795f94ac488 /src/alloc.c | |
| parent | 3e20d50fc5a8fc94b571e140a696ccd65040e6c1 (diff) | |
| download | emacs-30a00f14c824e5e4005a1cb6ccf2f26def19d80b.tar.gz emacs-30a00f14c824e5e4005a1cb6ccf2f26def19d80b.zip | |
Fix coding style
Especially, insert a space between function name and paren.
* src/alloc.c (garbage_collect):
* src/font.h:
* src/frame.h:
* src/fringe.c:
* src/gtkutil.c (xg_set_screen):
(xg_create_frame_widgets):
(xg_create_frame_outer_widgets):
(xg_get_file_name):
(xg_get_font):
(xg_update_scrollbar_pos):
* src/image.c (image_create_bitmap_from_file):
(xpm_load_image):
* src/pgtkfns.c (pgtk_get_monitor_scale_factor):
(is_wayland_display):
(pgtk_display_info_for_name):
(INSTALL_CURSOR):
(Fx_create_frame):
(Fx_display_mm_height):
(Fx_display_mm_width):
(Fx_display_pixel_width):
(Fx_display_pixel_height):
* src/pgtkselect.c (pgtk_selection_usable):
(Fpgtk_own_selection_internal):
(Fpgtk_get_selection_internal):
* src/pgtkterm.c:
(x_set_parent_frame):
(pgtk_draw_fringe_bitmap):
(pgtk_handle_draw):
(scroll_event):
(pgtk_text_scaling_factor):
(pgtk_term_init):
* src/pgtkterm.h:
* src/window.h:
* src/xdisp.c (redisplay_internal):
(draw_glyphs_debug):
(draw_glyphs):
(note_mouse_highlight):
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c index 9388cf1d08f..22e3e8e2a1b 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -6145,7 +6145,7 @@ garbage_collect (void) | |||
| 6145 | mark_kboards (); | 6145 | mark_kboards (); |
| 6146 | mark_threads (); | 6146 | mark_threads (); |
| 6147 | #ifdef HAVE_PGTK | 6147 | #ifdef HAVE_PGTK |
| 6148 | mark_pgtkterm(); | 6148 | mark_pgtkterm (); |
| 6149 | #endif | 6149 | #endif |
| 6150 | 6150 | ||
| 6151 | #ifdef USE_GTK | 6151 | #ifdef USE_GTK |