diff options
| author | Kim F. Storm | 2003-11-27 21:12:12 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2003-11-27 21:12:12 +0000 |
| commit | 58df72561da95fbfc4f07a6b5d2007424cc744dd (patch) | |
| tree | 159f395dcb64d0bb1183bee14097c62f9e94133d | |
| parent | 2c1385edb656815975976a72081e4b134ed716e9 (diff) | |
| download | emacs-58df72561da95fbfc4f07a6b5d2007424cc744dd.tar.gz emacs-58df72561da95fbfc4f07a6b5d2007424cc744dd.zip | |
(buffer_posn_from_coords, mode_line_string)
(marginal_area_string): Fix prototypes.
(window_box_left_offset, window_box_right_offset): Add prototypes.
| -rw-r--r-- | src/dispextern.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/dispextern.h b/src/dispextern.h index 01d83247311..f306a939db2 100644 --- a/src/dispextern.h +++ b/src/dispextern.h | |||
| @@ -2454,7 +2454,9 @@ int window_box_height P_ ((struct window *)); | |||
| 2454 | int window_text_bottom_y P_ ((struct window *)); | 2454 | int window_text_bottom_y P_ ((struct window *)); |
| 2455 | int window_box_width P_ ((struct window *, int)); | 2455 | int window_box_width P_ ((struct window *, int)); |
| 2456 | int window_box_left P_ ((struct window *, int)); | 2456 | int window_box_left P_ ((struct window *, int)); |
| 2457 | int window_box_left_offset P_ ((struct window *, int)); | ||
| 2457 | int window_box_right P_ ((struct window *, int)); | 2458 | int window_box_right P_ ((struct window *, int)); |
| 2459 | int window_box_right_offset P_ ((struct window *, int)); | ||
| 2458 | void window_box_edges P_ ((struct window *, int, int *, int *, int *, int *)); | 2460 | void window_box_edges P_ ((struct window *, int, int *, int *, int *, int *)); |
| 2459 | int estimate_mode_line_height P_ ((struct frame *, enum face_id)); | 2461 | int estimate_mode_line_height P_ ((struct frame *, enum face_id)); |
| 2460 | void pixel_to_glyph_coords P_ ((struct frame *, int, int, int *, int *, | 2462 | void pixel_to_glyph_coords P_ ((struct frame *, int, int, int *, int *, |
| @@ -2663,8 +2665,10 @@ extern int inverse_video; | |||
| 2663 | extern int required_matrix_width P_ ((struct window *)); | 2665 | extern int required_matrix_width P_ ((struct window *)); |
| 2664 | extern int required_matrix_height P_ ((struct window *)); | 2666 | extern int required_matrix_height P_ ((struct window *)); |
| 2665 | extern Lisp_Object mode_line_string P_ ((struct window *, int *, int *, | 2667 | extern Lisp_Object mode_line_string P_ ((struct window *, int *, int *, |
| 2668 | int *, int *, | ||
| 2666 | enum window_part, int *)); | 2669 | enum window_part, int *)); |
| 2667 | extern Lisp_Object marginal_area_string P_ ((struct window *, int *, int *, | 2670 | extern Lisp_Object marginal_area_string P_ ((struct window *, int *, int *, |
| 2671 | int *, int *, | ||
| 2668 | enum window_part, int *)); | 2672 | enum window_part, int *)); |
| 2669 | extern void redraw_frame P_ ((struct frame *)); | 2673 | extern void redraw_frame P_ ((struct frame *)); |
| 2670 | extern void redraw_garbaged_frames P_ ((void)); | 2674 | extern void redraw_garbaged_frames P_ ((void)); |
| @@ -2707,6 +2711,7 @@ int update_frame P_ ((struct frame *, int, int)); | |||
| 2707 | void update_single_window P_ ((struct window *, int)); | 2711 | void update_single_window P_ ((struct window *, int)); |
| 2708 | int scrolling P_ ((struct frame *)); | 2712 | int scrolling P_ ((struct frame *)); |
| 2709 | void buffer_posn_from_coords P_ ((struct window *, int *, int *, | 2713 | void buffer_posn_from_coords P_ ((struct window *, int *, int *, |
| 2714 | int *, int *, | ||
| 2710 | Lisp_Object *, struct display_pos *)); | 2715 | Lisp_Object *, struct display_pos *)); |
| 2711 | void do_pending_window_change P_ ((int)); | 2716 | void do_pending_window_change P_ ((int)); |
| 2712 | void change_frame_size P_ ((struct frame *, int, int, int, int, int)); | 2717 | void change_frame_size P_ ((struct frame *, int, int, int, int, int)); |