comparison src/xdisp.c @ 33510:405f162f1fc7

(pos_visible_p): Improve function comment.
author Gerd Moellmann <gerd@gnu.org>
date Wed, 15 Nov 2000 19:25:32 +0000
parents b714a06b99ec
children de985bc39ea3
comparison
equal deleted inserted replaced
33509:a7d245e080d1 33510:405f162f1fc7
940 940
941 /*********************************************************************** 941 /***********************************************************************
942 Utilities 942 Utilities
943 ***********************************************************************/ 943 ***********************************************************************/
944 944
945 /* Return 1 if position CHARPOS is visible in window W. 945 /* Return 1 if position CHARPOS is visible in window W. Set *FULLY to
946 Set *FULLY to 1 if POS is visible and the line containing 946 1 if POS is visible and the line containing POS is fully visible.
947 POS is fully visible. */ 947 EXACT_MODE_LINE_HEIGHTS_P non-zero means compute exact mode-line
948 and header-lines heights. */
948 949
949 int 950 int
950 pos_visible_p (w, charpos, fully, exact_mode_line_heights_p) 951 pos_visible_p (w, charpos, fully, exact_mode_line_heights_p)
951 struct window *w; 952 struct window *w;
952 int charpos, *fully, exact_mode_line_heights_p; 953 int charpos, *fully, exact_mode_line_heights_p;