Searched refs:modeline (Results 1 - 3 of 3) sorted by relevance

/haiku-buildtools/legacy/gcc/texinfo/info/
H A Dwindow.c189 maybe_free (win->modeline);
190 win->modeline = (char *)xmalloc (1 + width);
205 previous window's modeline. */
281 chain cannot start at window->height, since that is where the modeline
295 window->modeline = (char *)xmalloc (1 + window->width);
645 if (window->modeline)
646 free (window->modeline);
1037 /* Create a modeline for WINDOW, and store it in window->modeline. */
1043 char *modeline; local
[all...]
H A Dwindow.h32 always one more than this number because each window has a modeline. */
36 window. This number includes the modeline of the window. */
56 windows modeline. The number of lines that can be displayed in a window
68 char *modeline; /* Calculated text of the modeline for this window. */ member in struct:window_struct
81 #define W_InhibitMode 0x08 /* This WINDOW has no modeline. */
97 /* Make the modeline member for WINDOW. */
H A Ddisplay.c320 /* Finally, if this window has a modeline it might need to be redisplayed.
321 Check the window's modeline against the one in the display, and update
331 (strcmp (display[line_index]->text, win->modeline) != 0))
335 terminal_put_text (win->modeline);
337 strcpy (display[line_index]->text, win->modeline);
339 display[line_index]->textlen = strlen (win->modeline);

Completed in 234 milliseconds