Lines Matching refs:the_display
38 DISPLAY_LINE **the_display = (DISPLAY_LINE **)NULL;
43 /* Initialize THE_DISPLAY to WIDTH and HEIGHT, with nothing in it. */
47 free_display (the_display);
48 the_display = make_display (width, height);
49 display_clear_display (the_display);
69 /* Update the windows pointed to by WINDOW in the_display. This actually
122 /* Display WIN on the_display. Unlike display_update_display (), this
135 DISPLAY_LINE **display = the_display;
447 /* Scroll the region of the_display starting at START, ending at END, and
464 if (!the_display[0])
482 temp = the_display[last - i];
483 the_display[last - i] = the_display[end - i];
484 the_display[end - i] = temp;
491 the_display[i]->text[0] = '\0';
492 the_display[i]->textlen = 0;
493 the_display[i]->inverse = 0;
502 temp = the_display[last + i];
503 the_display[last + i] = the_display[start + i];
504 the_display[start + i] = temp;
511 the_display[i]->text[0] = '\0';
512 the_display[i]->textlen = 0;
513 the_display[i]->inverse = 0;