diff options
| author | Kim F. Storm | 2004-01-06 22:36:41 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2004-01-06 22:36:41 +0000 |
| commit | 0a0c9ab0e43c703da758197828aeb7b5ca19fc66 (patch) | |
| tree | 624974f5d579b341c078813add6a3d2044587f1d /src | |
| parent | 634910c8fbe0efb5f414b673df9e58658f8d50c6 (diff) | |
| download | emacs-0a0c9ab0e43c703da758197828aeb7b5ca19fc66.tar.gz emacs-0a0c9ab0e43c703da758197828aeb7b5ca19fc66.zip | |
(buffer_posn_from_coords, mode_line_string)
(marginal_area_string): Fix prototypes.
Diffstat (limited to 'src')
| -rw-r--r-- | src/dispextern.h | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/src/dispextern.h b/src/dispextern.h index d26215e5113..81c707d9335 100644 --- a/src/dispextern.h +++ b/src/dispextern.h | |||
| @@ -2672,12 +2672,19 @@ int popup_activated P_ ((void)); | |||
| 2672 | extern int inverse_video; | 2672 | extern int inverse_video; |
| 2673 | extern int required_matrix_width P_ ((struct window *)); | 2673 | extern int required_matrix_width P_ ((struct window *)); |
| 2674 | extern int required_matrix_height P_ ((struct window *)); | 2674 | extern int required_matrix_height P_ ((struct window *)); |
| 2675 | extern Lisp_Object mode_line_string P_ ((struct window *, int *, int *, | 2675 | extern Lisp_Object buffer_posn_from_coords P_ ((struct window *, |
| 2676 | int *, int *, | 2676 | int *, int *, |
| 2677 | enum window_part, int *)); | 2677 | struct display_pos *, |
| 2678 | extern Lisp_Object marginal_area_string P_ ((struct window *, int *, int *, | 2678 | Lisp_Object *, |
| 2679 | int *, int *, | 2679 | int *, int *, int *, int *)); |
| 2680 | enum window_part, int *)); | 2680 | extern Lisp_Object mode_line_string P_ ((struct window *, enum window_part, |
| 2681 | int *, int *, int *, | ||
| 2682 | Lisp_Object *, | ||
| 2683 | int *, int *, int *, int *)); | ||
| 2684 | extern Lisp_Object marginal_area_string P_ ((struct window *, enum window_part, | ||
| 2685 | int *, int *, int *, | ||
| 2686 | Lisp_Object *, | ||
| 2687 | int *, int *, int *, int *)); | ||
| 2681 | extern void redraw_frame P_ ((struct frame *)); | 2688 | extern void redraw_frame P_ ((struct frame *)); |
| 2682 | extern void redraw_garbaged_frames P_ ((void)); | 2689 | extern void redraw_garbaged_frames P_ ((void)); |
| 2683 | extern void cancel_line P_ ((int, struct frame *)); | 2690 | extern void cancel_line P_ ((int, struct frame *)); |
| @@ -2718,9 +2725,6 @@ int direct_output_forward_char P_ ((int)); | |||
| 2718 | int update_frame P_ ((struct frame *, int, int)); | 2725 | int update_frame P_ ((struct frame *, int, int)); |
| 2719 | void update_single_window P_ ((struct window *, int)); | 2726 | void update_single_window P_ ((struct window *, int)); |
| 2720 | int scrolling P_ ((struct frame *)); | 2727 | int scrolling P_ ((struct frame *)); |
| 2721 | void buffer_posn_from_coords P_ ((struct window *, int *, int *, | ||
| 2722 | int *, int *, | ||
| 2723 | Lisp_Object *, struct display_pos *)); | ||
| 2724 | void do_pending_window_change P_ ((int)); | 2728 | void do_pending_window_change P_ ((int)); |
| 2725 | void change_frame_size P_ ((struct frame *, int, int, int, int, int)); | 2729 | void change_frame_size P_ ((struct frame *, int, int, int, int, int)); |
| 2726 | void bitch_at_user P_ ((void)); | 2730 | void bitch_at_user P_ ((void)); |