Mercurial > emacs
annotate oldXMenu/SetFrz.c @ 30652:4ed1978642cb
(start_display): WHen starting display on a continuation
line, clear ascent and descent members of the iterator structure;
the height of the continued line does not affect the height of the
continuation line.
(make_cursor_line_fully_visible): Do nothing if cursor is on a
line taller than the window.
(redisplay_window) <forced window start>: Handle case that the
middle of the window is not found in any row.
(dump_glyph_row): Show more information.
(compute_line_metrics): Use MATRIX_FIRST_TEXT_ROW to determine the
first text line in a glyph matrix.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Mon, 07 Aug 2000 21:52:14 +0000 |
parents | bbce331da1be |
children | 695cf19ef79e d7ddb3e565de |
rev | line source |
---|---|
25858 | 1 #include "copyright.h" |
2 | |
3 /* $Header: /u/src/emacs/19.0/oldXMenu/RCS/SetFrz.c,v 1.1 1992/04/11 22:10:21 jimb Exp $ */ | |
4 /* Copyright Massachusetts Institute of Technology 1985 */ | |
5 | |
6 /* | |
7 * XMenu: MIT Project Athena, X Window system menu package | |
8 * | |
9 * XMenuSetFreeze - Forcibly set the menu freeze mode switch | |
10 * overriding the Xdefaults setting. | |
11 * This is necessary in some situations. | |
12 * | |
13 * Author: Tony Della Fera, DEC | |
14 * January 29, 1986 | |
15 * | |
16 */ | |
17 | |
18 #include "XMenuInt.h" | |
19 | |
20 XMenuSetFreeze(menu, freeze) | |
21 register XMenu *menu; /* Menu object to be modified. */ | |
22 register int freeze; /* Freeze mode? */ | |
23 { | |
24 /* | |
25 * Set the freeze mode switch. | |
26 */ | |
27 menu->freeze = freeze; | |
28 } |