diff options
author | Gerd Moellmann <gerd@gnu.org> | 2001-09-25 09:53:42 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2001-09-25 09:53:42 +0000 |
commit | 0bef35bc603cd8299b5a57d00bf7c78fd9e12350 (patch) | |
tree | ceb0bb45d630b73a3e575e35e61ab2a613387e67 /src/xdisp.c | |
parent | 924b604c80a975b07726aa493702b5489b47caaf (diff) | |
download | emacs-0bef35bc603cd8299b5a57d00bf7c78fd9e12350.tar.gz |
(row_containing_pos): Make externally visible.
Diffstat (limited to 'src/xdisp.c')
-rw-r--r-- | src/xdisp.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index 7ffa35b67a7..cf518632aa1 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -686,9 +686,6 @@ static void handle_stop P_ ((struct it *)); static int tool_bar_lines_needed P_ ((struct frame *)); static int single_display_prop_intangible_p P_ ((Lisp_Object)); static void ensure_echo_area_buffers P_ ((void)); -static struct glyph_row *row_containing_pos P_ ((struct window *, int, - struct glyph_row *, - struct glyph_row *)); static Lisp_Object unwind_with_echo_area_buffer P_ ((Lisp_Object)); static Lisp_Object with_echo_area_buffer_unwind_data P_ ((struct window *)); static int with_echo_area_buffer P_ ((struct window *, int, @@ -11136,7 +11133,7 @@ sync_frame_with_window_matrix_rows (w) all rows to the end of the display area of W. Value is the row containing CHARPOS or null. */ -static struct glyph_row * +struct glyph_row * row_containing_pos (w, charpos, start, end) struct window *w; int charpos; |