(update_frame): Fix test of outq and baud_rate some more.
[bpt/emacs.git] / src / dispnew.c
CommitLineData
4588ec20 1/* Updating of data structures for redisplay.
60a8948a 2 Copyright (C) 1985, 86, 87, 88, 93, 94 Free Software Foundation, Inc.
4588ec20
JB
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
fa61c701 8the Free Software Foundation; either version 2, or (at your option)
4588ec20
JB
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
18the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20
21#include <signal.h>
2396e3da 22#include <stdio.h>
4588ec20 23
18160b98 24#include <config.h>
4588ec20
JB
25#include <ctype.h>
26
47099d6f 27#include "lisp.h"
4588ec20
JB
28#include "termchar.h"
29#include "termopts.h"
3be08bea 30#include "termhooks.h"
4588ec20 31#include "cm.h"
4588ec20
JB
32#include "dispextern.h"
33#include "buffer.h"
502b9b64 34#include "frame.h"
4588ec20
JB
35#include "window.h"
36#include "commands.h"
37#include "disptab.h"
38#include "indent.h"
d169fe39 39#include "intervals.h"
4588ec20 40
648fa17d 41#include "systty.h"
a41f8bed
JB
42#include "systime.h"
43
4588ec20
JB
44#ifdef HAVE_X_WINDOWS
45#include "xterm.h"
46#endif /* HAVE_X_WINDOWS */
47
48#define max(a, b) ((a) > (b) ? (a) : (b))
49#define min(a, b) ((a) < (b) ? (a) : (b))
50
4588ec20
JB
51/* Get number of chars of output now in the buffer of a stdio stream.
52 This ought to be built in in stdio, but it isn't.
53 Some s- files override this because their stdio internals differ. */
e3271ae5 54#ifdef __GNU_LIBRARY__
097c2824
RM
55/* The s- file might have overridden the definition with one that works for
56 the system's C library. But we are using the GNU C library, so this is
57 the right definition for every system. */
cb5558ff 58#undef PENDING_OUTPUT_COUNT
e3271ae5
RM
59#define PENDING_OUTPUT_COUNT(FILE) ((FILE)->__bufp - (FILE)->__buffer)
60#else
cb5558ff 61#ifndef PENDING_OUTPUT_COUNT
4588ec20
JB
62#define PENDING_OUTPUT_COUNT(FILE) ((FILE)->_ptr - (FILE)->_base)
63#endif
e3271ae5 64#endif
4588ec20 65
a41f8bed 66/* Nonzero upon entry to redisplay means do not assume anything about
502b9b64 67 current contents of actual terminal frame; clear and redraw it. */
4588ec20 68
502b9b64 69int frame_garbaged;
4588ec20
JB
70
71/* Nonzero means last display completed. Zero means it was preempted. */
72
73int display_completed;
74
75/* Lisp variable visible-bell; enables use of screen-flash
76 instead of audible bell. */
77
78int visible_bell;
79
502b9b64 80/* Invert the color of the whole frame, at a low level. */
4588ec20
JB
81
82int inverse_video;
83
84/* Line speed of the terminal. */
85
86int baud_rate;
87
88/* nil or a symbol naming the window system under which emacs is
89 running ('x is the only current possibility). */
90
91Lisp_Object Vwindow_system;
92
93/* Version number of X windows: 10, 11 or nil. */
94Lisp_Object Vwindow_system_version;
95
96/* Vector of glyph definitions. Indexed by glyph number,
97 the contents are a string which is how to output the glyph.
98
99 If Vglyph_table is nil, a glyph is output by using its low 8 bits
100 as a character code. */
101
102Lisp_Object Vglyph_table;
103
104/* Display table to use for vectors that don't specify their own. */
105
106Lisp_Object Vstandard_display_table;
107
108/* Nonzero means reading single-character input with prompt
1113d9db
JB
109 so put cursor on minibuffer after the prompt.
110 positive means at end of text in echo area;
111 negative means at beginning of line. */
4588ec20
JB
112int cursor_in_echo_area;
113\f
502b9b64
JB
114/* The currently selected frame.
115 In a single-frame version, this variable always remains 0. */
4588ec20 116
502b9b64 117FRAME_PTR selected_frame;
4588ec20 118
502b9b64
JB
119/* A frame which is not just a minibuffer, or 0 if there are no such
120 frames. This is usually the most recent such frame that was
121 selected. In a single-frame version, this variable always remains 0. */
122FRAME_PTR last_nonminibuf_frame;
e5d77022 123
502b9b64 124/* In a single-frame version, the information that would otherwise
190721ac
JB
125 exist inside frame objects lives in the following structure instead.
126
127 NOTE: the_only_frame is not checked for garbage collection; don't
eb8c3be9 128 store collectible objects in any of its fields!
190721ac
JB
129
130 You're not/The only frame in town/... */
4588ec20 131
502b9b64
JB
132#ifndef MULTI_FRAME
133struct frame the_only_frame;
e5d77022 134#endif
4588ec20
JB
135
136/* This is a vector, made larger whenever it isn't large enough,
502b9b64
JB
137 which is used inside `update_frame' to hold the old contents
138 of the FRAME_PHYS_LINES of the frame being updated. */
139struct frame_glyphs **ophys_lines;
4588ec20
JB
140/* Length of vector currently allocated. */
141int ophys_lines_length;
142
143FILE *termscript; /* Stdio stream being used for copy of all output. */
144
145struct cm Wcm; /* Structure for info on cursor positioning */
146
147extern short ospeed; /* Output speed (from sg_ospeed) */
148
4588ec20 149int delayed_size_change; /* 1 means SIGWINCH happened when not safe. */
4588ec20 150\f
502b9b64 151#ifdef MULTI_FRAME
4588ec20 152
502b9b64
JB
153DEFUN ("redraw-frame", Fredraw_frame, Sredraw_frame, 1, 1, 0,
154 "Clear frame FRAME and output again what is supposed to appear on it.")
155 (frame)
156 Lisp_Object frame;
4588ec20 157{
502b9b64 158 FRAME_PTR f;
4588ec20 159
502b9b64
JB
160 CHECK_LIVE_FRAME (frame, 0);
161 f = XFRAME (frame);
162 update_begin (f);
4588ec20 163 /* set_terminal_modes (); */
502b9b64 164 clear_frame ();
b6a65ac2 165 clear_frame_records (f);
502b9b64 166 update_end (f);
4588ec20 167 fflush (stdout);
4588ec20
JB
168 windows_or_buffers_changed++;
169 /* Mark all windows as INaccurate,
170 so that every window will have its redisplay done. */
502b9b64
JB
171 mark_window_display_accurate (FRAME_ROOT_WINDOW (f), 0);
172 f->garbaged = 0;
4588ec20
JB
173 return Qnil;
174}
175
502b9b64
JB
176redraw_frame (f)
177 FRAME_PTR f;
4588ec20 178{
502b9b64
JB
179 Lisp_Object frame;
180 XSET (frame, Lisp_Frame, f);
181 Fredraw_frame (frame);
4588ec20
JB
182}
183
35f56f96 184#else
4588ec20 185
d8039c5c 186DEFUN ("redraw-frame", Fredraw_frame, Sredraw_frame, 1, 1, 0,
35f56f96
JB
187 "Clear frame FRAME and output again what is supposed to appear on it.")
188 (frame)
189 Lisp_Object frame;
4588ec20
JB
190{
191 update_begin (0);
192 set_terminal_modes ();
502b9b64 193 clear_frame ();
4588ec20
JB
194 update_end (0);
195 fflush (stdout);
502b9b64 196 clear_frame_records (0);
4588ec20
JB
197 windows_or_buffers_changed++;
198 /* Mark all windows as INaccurate,
199 so that every window will have its redisplay done. */
b5c685f4 200 mark_window_display_accurate (FRAME_ROOT_WINDOW (0), 0);
4588ec20
JB
201 return Qnil;
202}
203
35f56f96
JB
204#endif
205
206DEFUN ("redraw-display", Fredraw_display, Sredraw_display, 0, 0, "",
207 "Clear and redisplay all visible frames.")
208 ()
209{
210 Lisp_Object tail, frame;
211
212 FOR_EACH_FRAME (tail, frame)
9223a96a 213 if (FRAME_VISIBLE_P (XFRAME (frame)))
35f56f96
JB
214 Fredraw_frame (frame);
215
216 return Qnil;
217}
218
9223a96a
RS
219/* This is used when frame_garbaged is set.
220 Redraw the individual frames marked as garbaged. */
221
222void
223redraw_garbaged_frames ()
224{
225 Lisp_Object tail, frame;
226
227 FOR_EACH_FRAME (tail, frame)
228 if (FRAME_VISIBLE_P (XFRAME (frame))
229 && FRAME_GARBAGED_P (XFRAME (frame)))
230 Fredraw_frame (frame);
231}
232
4588ec20 233\f
502b9b64
JB
234static struct frame_glyphs *
235make_frame_glyphs (frame, empty)
236 register FRAME_PTR frame;
4588ec20
JB
237 int empty;
238{
239 register int i;
502b9b64
JB
240 register width = FRAME_WIDTH (frame);
241 register height = FRAME_HEIGHT (frame);
60a8948a
RS
242 register struct frame_glyphs *new
243 = (struct frame_glyphs *) xmalloc (sizeof (struct frame_glyphs));
4588ec20 244
502b9b64 245 SET_GLYPHS_FRAME (new, frame);
4588ec20
JB
246 new->height = height;
247 new->width = width;
248 new->used = (int *) xmalloc (height * sizeof (int));
249 new->glyphs = (GLYPH **) xmalloc (height * sizeof (GLYPH *));
60a8948a 250 new->charstarts = (int **) xmalloc (height * sizeof (int *));
4588ec20
JB
251 new->highlight = (char *) xmalloc (height * sizeof (char));
252 new->enable = (char *) xmalloc (height * sizeof (char));
253 bzero (new->enable, height * sizeof (char));
254 new->bufp = (int *) xmalloc (height * sizeof (int));
255
256#ifdef HAVE_X_WINDOWS
b6a65ac2 257 if (FRAME_X_P (frame))
4588ec20 258 {
4588ec20
JB
259 new->top_left_x = (short *) xmalloc (height * sizeof (short));
260 new->top_left_y = (short *) xmalloc (height * sizeof (short));
261 new->pix_width = (short *) xmalloc (height * sizeof (short));
262 new->pix_height = (short *) xmalloc (height * sizeof (short));
448fd7c0 263 new->max_ascent = (short *) xmalloc (height * sizeof (short));
4588ec20
JB
264 }
265#endif
266
267 if (empty)
268 {
269 /* Make the buffer used by decode_mode_spec. This buffer is also
502b9b64 270 used as temporary storage when updating the frame. See scroll.c. */
4588ec20 271 unsigned int total_glyphs = (width + 2) * sizeof (GLYPH);
d52bad65 272 unsigned int total_charstarts = (width + 2) * sizeof (int);
4588ec20
JB
273
274 new->total_contents = (GLYPH *) xmalloc (total_glyphs);
275 bzero (new->total_contents, total_glyphs);
d52bad65
RS
276
277 new->total_charstarts = (int *) xmalloc (total_charstarts);
278 bzero (new->total_charstarts, total_glyphs);
4588ec20
JB
279 }
280 else
281 {
282 unsigned int total_glyphs = height * (width + 2) * sizeof (GLYPH);
283
284 new->total_contents = (GLYPH *) xmalloc (total_glyphs);
285 bzero (new->total_contents, total_glyphs);
286 for (i = 0; i < height; i++)
287 new->glyphs[i] = new->total_contents + i * (width + 2) + 1;
60a8948a
RS
288
289 if (!FRAME_TERMCAP_P (frame))
290 {
291 unsigned int total_charstarts = height * (width + 2) * sizeof (int);
292
293 new->total_charstarts = (int *) xmalloc (total_charstarts);
294 bzero (new->total_charstarts, total_charstarts);
295 for (i = 0; i < height; i++)
296 new->charstarts[i] = new->total_charstarts + i * (width + 2) + 1;
297 }
298 else
299 {
300 /* Without a window system, we don't really need charstarts.
301 So use a small amount of space to make enough data structure
302 to prevent crashes in display_text_line. */
303 new->total_charstarts = (int *) xmalloc ((width + 2) * sizeof (int));
304 for (i = 0; i < height; i++)
305 new->charstarts[i] = new->total_charstarts;
306 }
4588ec20
JB
307 }
308
309 return new;
310}
311
312static void
502b9b64
JB
313free_frame_glyphs (frame, glyphs)
314 FRAME_PTR frame;
315 struct frame_glyphs *glyphs;
4588ec20
JB
316{
317 if (glyphs->total_contents)
9ac0d9e0 318 xfree (glyphs->total_contents);
60a8948a
RS
319 if (glyphs->total_charstarts)
320 xfree (glyphs->total_charstarts);
4588ec20 321
9ac0d9e0
JB
322 xfree (glyphs->used);
323 xfree (glyphs->glyphs);
324 xfree (glyphs->highlight);
325 xfree (glyphs->enable);
326 xfree (glyphs->bufp);
60a8948a
RS
327 if (glyphs->charstarts)
328 xfree (glyphs->charstarts);
4588ec20
JB
329
330#ifdef HAVE_X_WINDOWS
b6a65ac2 331 if (FRAME_X_P (frame))
4588ec20 332 {
9ac0d9e0
JB
333 xfree (glyphs->top_left_x);
334 xfree (glyphs->top_left_y);
335 xfree (glyphs->pix_width);
336 xfree (glyphs->pix_height);
337 xfree (glyphs->max_ascent);
4588ec20
JB
338 }
339#endif
340
9ac0d9e0 341 xfree (glyphs);
4588ec20
JB
342}
343
344static void
502b9b64
JB
345remake_frame_glyphs (frame)
346 FRAME_PTR frame;
4588ec20 347{
502b9b64
JB
348 if (FRAME_CURRENT_GLYPHS (frame))
349 free_frame_glyphs (frame, FRAME_CURRENT_GLYPHS (frame));
350 if (FRAME_DESIRED_GLYPHS (frame))
351 free_frame_glyphs (frame, FRAME_DESIRED_GLYPHS (frame));
352 if (FRAME_TEMP_GLYPHS (frame))
353 free_frame_glyphs (frame, FRAME_TEMP_GLYPHS (frame));
354
355 if (FRAME_MESSAGE_BUF (frame))
832a0726
JB
356 {
357 /* Reallocate the frame's message buffer; remember that
358 echo_area_glyphs may be pointing here. */
359 char *old_message_buf = FRAME_MESSAGE_BUF (frame);
360
361 FRAME_MESSAGE_BUF (frame)
362 = (char *) xrealloc (FRAME_MESSAGE_BUF (frame),
363 FRAME_WIDTH (frame) + 1);
364
365 if (echo_area_glyphs == old_message_buf)
366 echo_area_glyphs = FRAME_MESSAGE_BUF (frame);
367 if (previous_echo_glyphs == old_message_buf)
368 previous_echo_glyphs = FRAME_MESSAGE_BUF (frame);
369 }
4588ec20 370 else
502b9b64
JB
371 FRAME_MESSAGE_BUF (frame)
372 = (char *) xmalloc (FRAME_WIDTH (frame) + 1);
4588ec20 373
502b9b64
JB
374 FRAME_CURRENT_GLYPHS (frame) = make_frame_glyphs (frame, 0);
375 FRAME_DESIRED_GLYPHS (frame) = make_frame_glyphs (frame, 0);
376 FRAME_TEMP_GLYPHS (frame) = make_frame_glyphs (frame, 1);
377 SET_FRAME_GARBAGED (frame);
4588ec20
JB
378}
379\f
502b9b64 380/* Return the hash code of contents of line VPOS in frame-matrix M. */
4588ec20
JB
381
382static int
383line_hash_code (m, vpos)
502b9b64 384 register struct frame_glyphs *m;
4588ec20
JB
385 int vpos;
386{
387 register GLYPH *body, *end;
388 register int h = 0;
389
390 if (!m->enable[vpos])
391 return 0;
392
94aa5d2d 393 /* Give all highlighted lines the same hash code
4588ec20
JB
394 so as to encourage scrolling to leave them in place. */
395 if (m->highlight[vpos])
396 return -1;
397
398 body = m->glyphs[vpos];
399
400 if (must_write_spaces)
401 while (1)
402 {
403 GLYPH g = *body++;
404
405 if (g == 0)
406 break;
407 h = (((h << 4) + (h >> 24)) & 0x0fffffff) + g - SPACEGLYPH;
408 }
409 else
410 while (1)
411 {
412 GLYPH g = *body++;
413
414 if (g == 0)
415 break;
416 h = (((h << 4) + (h >> 24)) & 0x0fffffff) + g;
417 }
418
419 if (h)
420 return h;
421 return 1;
422}
423
424/* Return number of characters in line in M at vpos VPOS,
425 except don't count leading and trailing spaces
426 unless the terminal requires those to be explicitly output. */
427
428static unsigned int
429line_draw_cost (m, vpos)
502b9b64 430 struct frame_glyphs *m;
4588ec20
JB
431 int vpos;
432{
433 register GLYPH *beg = m->glyphs[vpos];
434 register GLYPH *end = m->glyphs[vpos] + m->used[vpos];
435 register int i;
436 register int tlen = GLYPH_TABLE_LENGTH;
437 register Lisp_Object *tbase = GLYPH_TABLE_BASE;
438
439 /* Ignore trailing and leading spaces if we can. */
440 if (!must_write_spaces)
441 {
442 while ((end != beg) && (*end == SPACEGLYPH))
443 --end;
444 if (end == beg)
445 return (0); /* All blank line. */
446
447 while (*beg == SPACEGLYPH)
448 ++beg;
449 }
450
451 /* If we don't have a glyph-table, each glyph is one character,
452 so return the number of glyphs. */
453 if (tbase == 0)
454 return end - beg;
455
456 /* Otherwise, scan the glyphs and accumulate their total size in I. */
457 i = 0;
458 while ((beg <= end) && *beg)
459 {
460 register GLYPH g = *beg++;
461
462 if (GLYPH_SIMPLE_P (tbase, tlen, g))
463 i += 1;
464 else
465 i += GLYPH_LENGTH (tbase, g);
466 }
467 return i;
468}
469\f
470/* The functions on this page are the interface from xdisp.c to redisplay.
471
472 The only other interface into redisplay is through setting
502b9b64
JB
473 FRAME_CURSOR_X (frame) and FRAME_CURSOR_Y (frame)
474 and SET_FRAME_GARBAGED (frame). */
4588ec20
JB
475
476/* cancel_line eliminates any request to display a line at position `vpos' */
477
502b9b64 478cancel_line (vpos, frame)
4588ec20 479 int vpos;
502b9b64 480 register FRAME_PTR frame;
4588ec20 481{
502b9b64 482 FRAME_DESIRED_GLYPHS (frame)->enable[vpos] = 0;
4588ec20
JB
483}
484
502b9b64
JB
485clear_frame_records (frame)
486 register FRAME_PTR frame;
4588ec20 487{
502b9b64 488 bzero (FRAME_CURRENT_GLYPHS (frame)->enable, FRAME_HEIGHT (frame));
4588ec20
JB
489}
490
491/* Prepare to display on line VPOS starting at HPOS within it. */
492
493void
502b9b64
JB
494get_display_line (frame, vpos, hpos)
495 register FRAME_PTR frame;
4588ec20
JB
496 int vpos;
497 register int hpos;
498{
502b9b64
JB
499 register struct frame_glyphs *glyphs;
500 register struct frame_glyphs *desired_glyphs = FRAME_DESIRED_GLYPHS (frame);
4588ec20
JB
501 register GLYPH *p;
502
7c3c72ec 503 if (vpos < 0)
4588ec20
JB
504 abort ();
505
506 if ((desired_glyphs->enable[vpos]) && desired_glyphs->used[vpos] > hpos)
507 abort ();
508
509 if (! desired_glyphs->enable[vpos])
510 {
511 desired_glyphs->used[vpos] = 0;
512 desired_glyphs->highlight[vpos] = 0;
513 desired_glyphs->enable[vpos] = 1;
514 }
515
516 if (hpos > desired_glyphs->used[vpos])
517 {
518 GLYPH *g = desired_glyphs->glyphs[vpos] + desired_glyphs->used[vpos];
519 GLYPH *end = desired_glyphs->glyphs[vpos] + hpos;
520
521 desired_glyphs->used[vpos] = hpos;
522 while (g != end)
523 *g++ = SPACEGLYPH;
524 }
525}
526
527/* Like bcopy except never gets confused by overlap. */
528
529void
530safe_bcopy (from, to, size)
531 char *from, *to;
532 int size;
533{
b5c685f4 534 if (size <= 0 || from == to)
4588ec20
JB
535 return;
536
b5c685f4
JB
537 /* If the source and destination don't overlap, then bcopy can
538 handle it. If they do overlap, but the destination is lower in
539 memory than the source, we'll assume bcopy can handle that. */
540 if (to < from || from + size <= to)
541 bcopy (from, to, size);
542
543 /* Otherwise, we'll copy from the end. */
544 else
4588ec20 545 {
b5c685f4
JB
546 register char *endf = from + size;
547 register char *endt = to + size;
4588ec20
JB
548
549 /* If TO - FROM is large, then we should break the copy into
550 nonoverlapping chunks of TO - FROM bytes each. However, if
551 TO - FROM is small, then the bcopy function call overhead
552 makes this not worth it. The crossover point could be about
b5c685f4
JB
553 anywhere. Since I don't think the obvious copy loop is too
554 bad, I'm trying to err in its favor. */
4588ec20
JB
555 if (to - from < 64)
556 {
557 do
558 *--endt = *--endf;
559 while (endf != from);
560 }
561 else
562 {
b5c685f4 563 for (;;)
4588ec20
JB
564 {
565 endt -= (to - from);
566 endf -= (to - from);
567
b5c685f4
JB
568 if (endt < to)
569 break;
570
4588ec20
JB
571 bcopy (endf, endt, to - from);
572 }
b5c685f4
JB
573
574 /* If SIZE wasn't a multiple of TO - FROM, there will be a
4588ec20
JB
575 little left over. The amount left over is
576 (endt + (to - from)) - to, which is endt - from. */
577 bcopy (from, to, endt - from);
578 }
579 }
4588ec20
JB
580}
581
98038dc0 582/* Rotate a vector of SIZE bytes right, by DISTANCE bytes.
4588ec20
JB
583 DISTANCE may be negative. */
584
585static void
586rotate_vector (vector, size, distance)
587 char *vector;
588 int size;
589 int distance;
590{
591 char *temp = (char *) alloca (size);
592
593 if (distance < 0)
594 distance += size;
595
596 bcopy (vector, temp + distance, size - distance);
597 bcopy (vector + size - distance, temp, distance);
598 bcopy (temp, vector, size);
599}
600
601/* Scroll lines from vpos FROM up to but not including vpos END
602 down by AMOUNT lines (AMOUNT may be negative).
603 Returns nonzero if done, zero if terminal cannot scroll them. */
604
605int
d52bad65 606scroll_frame_lines (frame, from, end, amount, newpos)
502b9b64 607 register FRAME_PTR frame;
d52bad65 608 int from, end, amount, newpos;
4588ec20
JB
609{
610 register int i;
502b9b64
JB
611 register struct frame_glyphs *current_frame
612 = FRAME_CURRENT_GLYPHS (frame);
d52bad65 613 int pos_adjust;
23b0200c 614 int width = FRAME_WIDTH (frame);
4588ec20
JB
615
616 if (!line_ins_del_ok)
617 return 0;
618
619 if (amount == 0)
620 return 1;
621
622 if (amount > 0)
623 {
502b9b64 624 update_begin (frame);
4588ec20
JB
625 set_terminal_window (end + amount);
626 if (!scroll_region_ok)
627 ins_del_lines (end, -amount);
628 ins_del_lines (from, amount);
629 set_terminal_window (0);
630
502b9b64 631 rotate_vector (current_frame->glyphs + from,
4588ec20
JB
632 sizeof (GLYPH *) * (end + amount - from),
633 amount * sizeof (GLYPH *));
634
60a8948a 635 rotate_vector (current_frame->charstarts + from,
d52bad65
RS
636 sizeof (int *) * (end + amount - from),
637 amount * sizeof (int *));
638
23b0200c
RS
639 safe_bcopy (current_frame->used + from,
640 current_frame->used + from + amount,
641 (end - from) * sizeof current_frame->used[0]);
642
643 safe_bcopy (current_frame->highlight + from,
644 current_frame->highlight + from + amount,
645 (end - from) * sizeof current_frame->highlight[0]);
646
647 safe_bcopy (current_frame->enable + from,
648 current_frame->enable + from + amount,
649 (end - from) * sizeof current_frame->enable[0]);
650
d52bad65
RS
651 /* Adjust the lines by an amount
652 that puts the first of them at NEWPOS. */
23b0200c 653 pos_adjust = newpos - current_frame->charstarts[from + amount][0];
60a8948a
RS
654
655 /* Offset each char position in the charstarts lines we moved
656 by pos_adjust. */
23b0200c 657 for (i = from + amount; i < end + amount; i++)
60a8948a 658 {
d52bad65 659 int *line = current_frame->charstarts[i];
60a8948a 660 int col;
23b0200c
RS
661 for (col = 0; col < width; col++)
662 if (line[col] > 0)
663 line[col] += pos_adjust;
60a8948a 664 }
23b0200c 665 for (i = from; i < from + amount; i++)
60a8948a 666 {
d52bad65 667 int *line = current_frame->charstarts[i];
60a8948a
RS
668 int col;
669 line[0] = -1;
23b0200c 670 for (col = 0; col < width; col++)
60a8948a
RS
671 line[col] = 0;
672 }
673
4588ec20
JB
674 /* Mark the lines made empty by scrolling as enabled, empty and
675 normal video. */
502b9b64
JB
676 bzero (current_frame->used + from,
677 amount * sizeof current_frame->used[0]);
678 bzero (current_frame->highlight + from,
679 amount * sizeof current_frame->highlight[0]);
4588ec20
JB
680 for (i = from; i < from + amount; i++)
681 {
502b9b64 682 current_frame->glyphs[i][0] = '\0';
60a8948a 683 current_frame->charstarts[i][0] = -1;
502b9b64 684 current_frame->enable[i] = 1;
4588ec20
JB
685 }
686
502b9b64
JB
687 safe_bcopy (current_frame->bufp + from,
688 current_frame->bufp + from + amount,
689 (end - from) * sizeof current_frame->bufp[0]);
4588ec20
JB
690
691#ifdef HAVE_X_WINDOWS
b6a65ac2 692 if (FRAME_X_P (frame))
4588ec20 693 {
502b9b64
JB
694 safe_bcopy (current_frame->top_left_x + from,
695 current_frame->top_left_x + from + amount,
696 (end - from) * sizeof current_frame->top_left_x[0]);
4588ec20 697
502b9b64
JB
698 safe_bcopy (current_frame->top_left_y + from,
699 current_frame->top_left_y + from + amount,
700 (end - from) * sizeof current_frame->top_left_y[0]);
4588ec20 701
502b9b64
JB
702 safe_bcopy (current_frame->pix_width + from,
703 current_frame->pix_width + from + amount,
704 (end - from) * sizeof current_frame->pix_width[0]);
4588ec20 705
502b9b64
JB
706 safe_bcopy (current_frame->pix_height + from,
707 current_frame->pix_height + from + amount,
708 (end - from) * sizeof current_frame->pix_height[0]);
448fd7c0
JA
709
710 safe_bcopy (current_frame->max_ascent + from,
711 current_frame->max_ascent + from + amount,
712 (end - from) * sizeof current_frame->max_ascent[0]);
4588ec20
JB
713 }
714#endif /* HAVE_X_WINDOWS */
715
502b9b64 716 update_end (frame);
4588ec20
JB
717 }
718 if (amount < 0)
719 {
502b9b64 720 update_begin (frame);
4588ec20
JB
721 set_terminal_window (end);
722 ins_del_lines (from + amount, amount);
723 if (!scroll_region_ok)
724 ins_del_lines (end + amount, -amount);
725 set_terminal_window (0);
726
502b9b64 727 rotate_vector (current_frame->glyphs + from + amount,
4588ec20
JB
728 sizeof (GLYPH *) * (end - from - amount),
729 amount * sizeof (GLYPH *));
730
60a8948a 731 rotate_vector (current_frame->charstarts + from + amount,
d52bad65
RS
732 sizeof (int *) * (end - from - amount),
733 amount * sizeof (int *));
734
23b0200c
RS
735 safe_bcopy (current_frame->used + from,
736 current_frame->used + from + amount,
737 (end - from) * sizeof current_frame->used[0]);
738
739 safe_bcopy (current_frame->highlight + from,
740 current_frame->highlight + from + amount,
741 (end - from) * sizeof current_frame->highlight[0]);
742
743 safe_bcopy (current_frame->enable + from,
744 current_frame->enable + from + amount,
745 (end - from) * sizeof current_frame->enable[0]);
746
d52bad65
RS
747 /* Adjust the lines by an amount
748 that puts the first of them at NEWPOS. */
23b0200c 749 pos_adjust = newpos - current_frame->charstarts[from + amount][0];
60a8948a
RS
750
751 /* Offset each char position in the charstarts lines we moved
752 by pos_adjust. */
753 for (i = from + amount; i < end + amount; i++)
754 {
d52bad65 755 int *line = current_frame->charstarts[i];
60a8948a 756 int col;
23b0200c
RS
757 for (col = 0; col < width; col++)
758 if (line[col] > 0)
759 line[col] += pos_adjust;
60a8948a 760 }
23b0200c 761 for (i = end + amount; i < end; i++)
60a8948a 762 {
d52bad65 763 int *line = current_frame->charstarts[i];
60a8948a
RS
764 int col;
765 line[0] = -1;
23b0200c 766 for (col = 0; col < width; col++)
60a8948a
RS
767 line[col] = 0;
768 }
769
4588ec20
JB
770 /* Mark the lines made empty by scrolling as enabled, empty and
771 normal video. */
502b9b64
JB
772 bzero (current_frame->used + end + amount,
773 - amount * sizeof current_frame->used[0]);
774 bzero (current_frame->highlight + end + amount,
775 - amount * sizeof current_frame->highlight[0]);
4588ec20
JB
776 for (i = end + amount; i < end; i++)
777 {
502b9b64 778 current_frame->glyphs[i][0] = '\0';
60a8948a 779 current_frame->charstarts[i][0] = 0;
502b9b64 780 current_frame->enable[i] = 1;
4588ec20
JB
781 }
782
502b9b64
JB
783 safe_bcopy (current_frame->bufp + from,
784 current_frame->bufp + from + amount,
785 (end - from) * sizeof current_frame->bufp[0]);
4588ec20
JB
786
787#ifdef HAVE_X_WINDOWS
b6a65ac2 788 if (FRAME_X_P (frame))
4588ec20 789 {
502b9b64
JB
790 safe_bcopy (current_frame->top_left_x + from,
791 current_frame->top_left_x + from + amount,
792 (end - from) * sizeof current_frame->top_left_x[0]);
4588ec20 793
502b9b64
JB
794 safe_bcopy (current_frame->top_left_y + from,
795 current_frame->top_left_y + from + amount,
796 (end - from) * sizeof current_frame->top_left_y[0]);
4588ec20 797
502b9b64
JB
798 safe_bcopy (current_frame->pix_width + from,
799 current_frame->pix_width + from + amount,
800 (end - from) * sizeof current_frame->pix_width[0]);
4588ec20 801
502b9b64
JB
802 safe_bcopy (current_frame->pix_height + from,
803 current_frame->pix_height + from + amount,
804 (end - from) * sizeof current_frame->pix_height[0]);
448fd7c0
JA
805
806 safe_bcopy (current_frame->max_ascent + from,
807 current_frame->max_ascent + from + amount,
808 (end - from) * sizeof current_frame->max_ascent[0]);
4588ec20
JB
809 }
810#endif /* HAVE_X_WINDOWS */
811
502b9b64 812 update_end (frame);
4588ec20
JB
813 }
814 return 1;
815}
816\f
502b9b64 817/* After updating a window W that isn't the full frame wide,
4588ec20 818 copy all the columns that W does not occupy
502b9b64
JB
819 into the FRAME_DESIRED_GLYPHS (frame) from the FRAME_PHYS_GLYPHS (frame)
820 so that update_frame will not change those columns. */
4588ec20
JB
821
822preserve_other_columns (w)
823 struct window *w;
824{
825 register int vpos;
502b9b64
JB
826 register struct frame_glyphs *current_frame, *desired_frame;
827 register FRAME_PTR frame = XFRAME (w->frame);
4588ec20
JB
828 int start = XFASTINT (w->left);
829 int end = XFASTINT (w->left) + XFASTINT (w->width);
830 int bot = XFASTINT (w->top) + XFASTINT (w->height);
831
502b9b64
JB
832 current_frame = FRAME_CURRENT_GLYPHS (frame);
833 desired_frame = FRAME_DESIRED_GLYPHS (frame);
4588ec20
JB
834
835 for (vpos = XFASTINT (w->top); vpos < bot; vpos++)
836 {
502b9b64 837 if (current_frame->enable[vpos] && desired_frame->enable[vpos])
4588ec20
JB
838 {
839 if (start > 0)
840 {
841 int len;
842
502b9b64 843 bcopy (current_frame->glyphs[vpos],
aec9f5f6
JB
844 desired_frame->glyphs[vpos],
845 start * sizeof (current_frame->glyphs[vpos]));
60a8948a
RS
846 bcopy (current_frame->charstarts[vpos],
847 desired_frame->charstarts[vpos],
848 start * sizeof (current_frame->charstarts[vpos]));
502b9b64
JB
849 len = min (start, current_frame->used[vpos]);
850 if (desired_frame->used[vpos] < len)
851 desired_frame->used[vpos] = len;
4588ec20 852 }
502b9b64
JB
853 if (current_frame->used[vpos] > end
854 && desired_frame->used[vpos] < current_frame->used[vpos])
4588ec20 855 {
502b9b64 856 while (desired_frame->used[vpos] < end)
60a8948a
RS
857 {
858 int used = desired_frame->used[vpos]++;
859 desired_frame->glyphs[vpos][used] = SPACEGLYPH;
860 desired_frame->glyphs[vpos][used] = 0;
861 }
502b9b64
JB
862 bcopy (current_frame->glyphs[vpos] + end,
863 desired_frame->glyphs[vpos] + end,
aec9f5f6
JB
864 ((current_frame->used[vpos] - end)
865 * sizeof (current_frame->glyphs[vpos])));
60a8948a
RS
866 bcopy (current_frame->charstarts[vpos] + end,
867 desired_frame->charstarts[vpos] + end,
868 ((current_frame->used[vpos] - end)
869 * sizeof (current_frame->charstarts[vpos])));
502b9b64 870 desired_frame->used[vpos] = current_frame->used[vpos];
4588ec20
JB
871 }
872 }
873 }
874}
875\f
876#if 0
877
502b9b64 878/* If window w does not need to be updated and isn't the full frame wide,
4588ec20 879 copy all the columns that w does occupy
502b9b64
JB
880 into the FRAME_DESIRED_LINES (frame) from the FRAME_PHYS_LINES (frame)
881 so that update_frame will not change those columns.
4588ec20
JB
882
883 Have not been able to figure out how to use this correctly. */
884
885preserve_my_columns (w)
886 struct window *w;
887{
888 register int vpos, fin;
502b9b64
JB
889 register struct frame_glyphs *l1, *l2;
890 register FRAME_PTR frame = XFRAME (w->frame);
4588ec20
JB
891 int start = XFASTINT (w->left);
892 int end = XFASTINT (w->left) + XFASTINT (w->width);
893 int bot = XFASTINT (w->top) + XFASTINT (w->height);
894
895 for (vpos = XFASTINT (w->top); vpos < bot; vpos++)
896 {
502b9b64
JB
897 if ((l1 = FRAME_DESIRED_GLYPHS (frame)->glyphs[vpos + 1])
898 && (l2 = FRAME_PHYS_GLYPHS (frame)->glyphs[vpos + 1]))
4588ec20
JB
899 {
900 if (l2->length > start && l1->length < l2->length)
901 {
902 fin = l2->length;
903 if (fin > end) fin = end;
904 while (l1->length < start)
905 l1->body[l1->length++] = ' ';
906 bcopy (l2->body + start, l1->body + start, fin - start);
907 l1->length = fin;
908 }
909 }
910 }
911}
912
913#endif
914\f
b64b3980 915/* Adjust by ADJUST the charstart values in window W
23b0200c 916 after vpos VPOS, which counts relative to the frame
b64b3980
RS
917 (not relative to W itself). */
918
919void
920adjust_window_charstarts (w, vpos, adjust)
921 struct window *w;
922 int vpos;
923 int adjust;
924{
925 int left = XFASTINT (w->left);
926 int top = XFASTINT (w->top);
23b0200c
RS
927 int right = left + window_internal_width (w);
928 int bottom = top + window_internal_height (w);
b64b3980
RS
929 int i;
930
23b0200c 931 for (i = vpos + 1; i < bottom; i++)
b64b3980
RS
932 {
933 int *charstart
934 = FRAME_CURRENT_GLYPHS (XFRAME (WINDOW_FRAME (w)))->charstarts[i];
935 int j;
936 for (j = left; j < right; j++)
937 if (charstart[j] > 0)
938 charstart[j] += adjust;
939 }
940}
23b0200c 941
352f1545
RS
942/* Check the charstarts values in the area of window W
943 for internal consistency. We cannot check that they are "right";
944 we can only look for something nonsensical. */
945
23b0200c
RS
946verify_charstarts (w)
947 struct window *w;
948{
949 FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
950 int i;
951 int top = XFASTINT (w->top);
952 int bottom = top + window_internal_height (w);
953 int left = XFASTINT (w->left);
954 int right = left + window_internal_width (w);
955 int next_line;
352f1545
RS
956 int truncate = (XINT (w->hscroll)
957 || (truncate_partial_width_windows
958 && (XFASTINT (w->width) < FRAME_WIDTH (f)))
959 || !NILP (XBUFFER (w->buffer)->truncate_lines));
23b0200c
RS
960
961 for (i = top; i < bottom; i++)
962 {
963 int j;
964 int last;
352f1545 965 int *charstart = FRAME_CURRENT_GLYPHS (f)->charstarts[i];
23b0200c
RS
966
967 if (i != top)
352f1545
RS
968 {
969 if (truncate)
970 {
971 /* If we are truncating lines, allow a jump
972 in charstarts from one line to the next. */
973 if (charstart[left] < next_line)
974 abort ();
975 }
976 else
977 {
978 if (charstart[left] != next_line)
979 abort ();
980 }
981 }
23b0200c
RS
982
983 for (j = left; j < right; j++)
984 if (charstart[j] > 0)
985 last = charstart[j];
2e8907d3
RS
986 /* Record where the next line should start. */
987 next_line = last;
988 if (BUF_ZV (XBUFFER (w->buffer)) != last)
989 {
990 /* If there's a newline between the two lines, count that. */
991 int endchar = *BUF_CHAR_ADDRESS (XBUFFER (w->buffer), last);
992 if (endchar == '\n')
993 next_line++;
994 }
23b0200c
RS
995 }
996}
b64b3980 997\f
4588ec20
JB
998/* On discovering that the redisplay for a window was no good,
999 cancel the columns of that window, so that when the window is
1000 displayed over again get_display_line will not complain. */
1001
1002cancel_my_columns (w)
1003 struct window *w;
1004{
1005 register int vpos;
60a8948a
RS
1006 register struct frame_glyphs *desired_glyphs
1007 = FRAME_DESIRED_GLYPHS (XFRAME (w->frame));
4588ec20
JB
1008 register int start = XFASTINT (w->left);
1009 register int bot = XFASTINT (w->top) + XFASTINT (w->height);
1010
1011 for (vpos = XFASTINT (w->top); vpos < bot; vpos++)
1012 if (desired_glyphs->enable[vpos]
1013 && desired_glyphs->used[vpos] >= start)
1014 desired_glyphs->used[vpos] = start;
1015}
1016\f
502b9b64 1017/* These functions try to perform directly and immediately on the frame
4588ec20
JB
1018 the necessary output for one change in the buffer.
1019 They may return 0 meaning nothing was done if anything is difficult,
1020 or 1 meaning the output was performed properly.
502b9b64 1021 They assume that the frame was up to date before the buffer
94aa5d2d 1022 change being displayed. They make various other assumptions too;
4588ec20
JB
1023 see command_loop_1 where these are called. */
1024
1025int
1026direct_output_for_insert (g)
1027 int g;
1028{
502b9b64
JB
1029 register FRAME_PTR frame = selected_frame;
1030 register struct frame_glyphs *current_frame
1031 = FRAME_CURRENT_GLYPHS (frame);
4588ec20
JB
1032
1033#ifndef COMPILER_REGISTER_BUG
1034 register
1035#endif /* COMPILER_REGISTER_BUG */
1036 struct window *w = XWINDOW (selected_window);
1037#ifndef COMPILER_REGISTER_BUG
1038 register
1039#endif /* COMPILER_REGISTER_BUG */
502b9b64 1040 int hpos = FRAME_CURSOR_X (frame);
4588ec20
JB
1041#ifndef COMPILER_REGISTER_BUG
1042 register
1043#endif /* COMPILER_REGISTER_BUG */
502b9b64 1044 int vpos = FRAME_CURSOR_Y (frame);
4588ec20 1045
fa61c701
JB
1046 /* Give up if about to continue line. */
1047 if (hpos >= XFASTINT (w->left) + window_internal_width (w) - 1
1048
4588ec20
JB
1049 /* Avoid losing if cursor is in invisible text off left margin */
1050 || (XINT (w->hscroll) && hpos == XFASTINT (w->left))
1051
1052 /* Give up if cursor outside window (in minibuf, probably) */
648fa17d 1053 || cursor_in_echo_area
502b9b64
JB
1054 || FRAME_CURSOR_Y (frame) < XFASTINT (w->top)
1055 || FRAME_CURSOR_Y (frame) >= XFASTINT (w->top) + XFASTINT (w->height)
4588ec20 1056
502b9b64 1057 /* Give up if cursor not really at FRAME_CURSOR_X, FRAME_CURSOR_Y */
4588ec20
JB
1058 || !display_completed
1059
1060 /* Give up if buffer appears in two places. */
1061 || buffer_shared > 1
1062
d169fe39
RS
1063#ifdef USE_TEXT_PROPERTIES
1064 /* Intervals have already been adjusted, point is after the
1065 character that was just inserted. */
ef4d2f9e 1066 /* Give up if character is invisible. */
d169fe39
RS
1067 /* Give up if character has a face property.
1068 At the moment we only lose at end of line or end of buffer
1069 and only with faces that have some background */
1070 /* Instead of wasting time, give up if character has any text properties */
1071 || ! NILP (Ftext_properties_at (XFASTINT (point - 1), Qnil))
1072#endif
1073
4588ec20
JB
1074 /* Give up if w is minibuffer and a message is being displayed there */
1075 || (MINI_WINDOW_P (w) && echo_area_glyphs))
1076 return 0;
1077
517b2e01
JB
1078 {
1079#ifdef HAVE_X_WINDOWS
1080 int dummy;
90b5299a 1081 int face = compute_char_face (frame, w, point - 1, -1, -1, &dummy, point);
517b2e01 1082#endif
a1c3de84 1083 current_frame->glyphs[vpos][hpos] = MAKE_GLYPH (frame, g, face);
839c7dfb
RS
1084 current_frame->charstarts[vpos][hpos] = point - 1;
1085 /* Record the entry for after the newly inserted character. */
1086 current_frame->charstarts[vpos][hpos + 1] = point;
b64b3980 1087 adjust_window_charstarts (w, vpos, 1);
517b2e01 1088 }
4588ec20
JB
1089 unchanged_modified = MODIFF;
1090 beg_unchanged = GPT - BEG;
1091 XFASTINT (w->last_point) = point;
1092 XFASTINT (w->last_point_x) = hpos;
1093 XFASTINT (w->last_modified) = MODIFF;
1094
1095 reassert_line_highlight (0, vpos);
502b9b64 1096 write_glyphs (&current_frame->glyphs[vpos][hpos], 1);
4588ec20 1097 fflush (stdout);
502b9b64
JB
1098 ++FRAME_CURSOR_X (frame);
1099 if (hpos == current_frame->used[vpos])
4588ec20 1100 {
502b9b64
JB
1101 current_frame->used[vpos] = hpos + 1;
1102 current_frame->glyphs[vpos][hpos + 1] = 0;
4588ec20
JB
1103 }
1104
1105 return 1;
1106}
1107
1108int
1109direct_output_forward_char (n)
1110 int n;
1111{
502b9b64 1112 register FRAME_PTR frame = selected_frame;
4588ec20 1113 register struct window *w = XWINDOW (selected_window);
d169fe39 1114 int position;
ea0d86af
RS
1115 int hpos = FRAME_CURSOR_X (frame);
1116
1117 /* Give up if in truncated text at end of line. */
1118 if (hpos >= XFASTINT (w->left) + window_internal_width (w) - 1)
1119 return 0;
1120
a9764248
JB
1121 /* Avoid losing if cursor is in invisible text off left margin
1122 or about to go off either side of window. */
502b9b64 1123 if ((FRAME_CURSOR_X (frame) == XFASTINT (w->left)
a9764248
JB
1124 && (XINT (w->hscroll) || n < 0))
1125 || (n > 0
fa61c701 1126 && (FRAME_CURSOR_X (frame) + 1 >= window_internal_width (w) - 1))
648fa17d 1127 || cursor_in_echo_area)
4588ec20 1128 return 0;
d169fe39 1129
de83c314
RS
1130 /* Can't use direct output if highlighting a region. */
1131 if (!NILP (Vtransient_mark_mode) && !NILP (current_buffer->mark_active))
1132 return 0;
1133
d169fe39
RS
1134#ifdef USE_TEXT_PROPERTIES
1135 /* Don't use direct output next to an invisible character
1136 since we might need to do something special. */
1137
2f24f5ac
RS
1138 XFASTINT (position) = point;
1139 if (XFASTINT (position) < ZV
294634fb 1140 && ! NILP (Fget_char_property (position,
2f24f5ac 1141 Qinvisible,
294634fb
KH
1142 selected_window)))
1143 return 0;
d169fe39 1144
2f24f5ac
RS
1145 XFASTINT (position) = point - 1;
1146 if (XFASTINT (position) >= BEGV
294634fb 1147 && ! NILP (Fget_char_property (position,
2f24f5ac 1148 Qinvisible,
294634fb
KH
1149 selected_window)))
1150 return 0;
d169fe39
RS
1151#endif
1152
502b9b64
JB
1153 FRAME_CURSOR_X (frame) += n;
1154 XFASTINT (w->last_point_x) = FRAME_CURSOR_X (frame);
4588ec20 1155 XFASTINT (w->last_point) = point;
502b9b64 1156 cursor_to (FRAME_CURSOR_Y (frame), FRAME_CURSOR_X (frame));
4588ec20 1157 fflush (stdout);
d169fe39 1158
4588ec20
JB
1159 return 1;
1160}
1161\f
1162static void update_line ();
1163
502b9b64 1164/* Update frame F based on the data in FRAME_DESIRED_GLYPHS.
4588ec20
JB
1165 Value is nonzero if redisplay stopped due to pending input.
1166 FORCE nonzero means do not stop for pending input. */
1167
1168int
502b9b64
JB
1169update_frame (f, force, inhibit_hairy_id)
1170 FRAME_PTR f;
4588ec20
JB
1171 int force;
1172 int inhibit_hairy_id;
1173{
54633da0 1174 register struct frame_glyphs *current_frame;
7098a0fa 1175 register struct frame_glyphs *desired_frame = 0;
4588ec20
JB
1176 register int i;
1177 int pause;
1178 int preempt_count = baud_rate / 2400 + 1;
1179 extern input_pending;
1180#ifdef HAVE_X_WINDOWS
1181 register int downto, leftmost;
1182#endif
1183
d88c2b9e
RS
1184 if (preempt_count <= 0)
1185 preempt_count = 1;
1186
502b9b64 1187 if (FRAME_HEIGHT (f) == 0) abort (); /* Some bug zeros some core */
4588ec20
JB
1188
1189 detect_input_pending ();
1190 if (input_pending && !force)
1191 {
1192 pause = 1;
1193 goto do_pause;
1194 }
1195
502b9b64 1196 update_begin (f);
4588ec20
JB
1197
1198 if (!line_ins_del_ok)
1199 inhibit_hairy_id = 1;
1200
7098a0fa
RS
1201 /* These are separate to avoid a possible bug in the AIX C compiler. */
1202 current_frame = FRAME_CURRENT_GLYPHS (f);
1203 desired_frame = FRAME_DESIRED_GLYPHS (f);
1204
efb859b4
JB
1205 /* See if any of the desired lines are enabled; don't compute for
1206 i/d line if just want cursor motion. */
502b9b64
JB
1207 for (i = 0; i < FRAME_HEIGHT (f); i++)
1208 if (desired_frame->enable[i])
4588ec20
JB
1209 break;
1210
1211 /* Try doing i/d line, if not yet inhibited. */
502b9b64
JB
1212 if (!inhibit_hairy_id && i < FRAME_HEIGHT (f))
1213 force |= scrolling (f);
4588ec20
JB
1214
1215 /* Update the individual lines as needed. Do bottom line first. */
1216
502b9b64
JB
1217 if (desired_frame->enable[FRAME_HEIGHT (f) - 1])
1218 update_line (f, FRAME_HEIGHT (f) - 1);
4588ec20
JB
1219
1220#ifdef HAVE_X_WINDOWS
b6a65ac2 1221 if (FRAME_X_P (f))
4588ec20 1222 {
502b9b64
JB
1223 leftmost = downto = f->display.x->internal_border_width;
1224 if (desired_frame->enable[0])
4588ec20 1225 {
502b9b64
JB
1226 current_frame->top_left_x[FRAME_HEIGHT (f) - 1] = leftmost;
1227 current_frame->top_left_y[FRAME_HEIGHT (f) - 1]
1228 = PIXEL_HEIGHT (f) - f->display.x->internal_border_width
448fd7c0 1229 - current_frame->pix_height[FRAME_HEIGHT (f) - 1];
502b9b64
JB
1230 current_frame->top_left_x[0] = leftmost;
1231 current_frame->top_left_y[0] = downto;
4588ec20
JB
1232 }
1233 }
1234#endif /* HAVE_X_WINDOWS */
1235
1236 /* Now update the rest of the lines. */
502b9b64 1237 for (i = 0; i < FRAME_HEIGHT (f) - 1 && (force || !input_pending); i++)
4588ec20 1238 {
502b9b64 1239 if (desired_frame->enable[i])
4588ec20 1240 {
b6a65ac2 1241 if (FRAME_TERMCAP_P (f))
4588ec20
JB
1242 {
1243 /* Flush out every so many lines.
1244 Also flush out if likely to have more than 1k buffered
1245 otherwise. I'm told that some telnet connections get
1246 really screwed by more than 1k output at once. */
1247 int outq = PENDING_OUTPUT_COUNT (stdout);
1248 if (outq > 900
1249 || (outq > 20 && ((i - 1) % preempt_count == 0)))
1250 {
1251 fflush (stdout);
1252 if (preempt_count == 1)
1253 {
a41f8bed
JB
1254#ifdef EMACS_OUTQSIZE
1255 if (EMACS_OUTQSIZE (0, &outq) < 0)
4588ec20
JB
1256 /* Probably not a tty. Ignore the error and reset
1257 * the outq count. */
1258 outq = PENDING_OUTPUT_COUNT (stdout);
1259#endif
1260 outq *= 10;
d520f0d2 1261 if (baud_rate <= outq && baud_rate > 0)
d88c2b9e 1262 sleep (outq / baud_rate);
4588ec20
JB
1263 }
1264 }
1265 if ((i - 1) % preempt_count == 0)
1266 detect_input_pending ();
1267 }
1268
502b9b64 1269 update_line (f, i);
4588ec20 1270#ifdef HAVE_X_WINDOWS
b6a65ac2 1271 if (FRAME_X_P (f))
4588ec20 1272 {
502b9b64
JB
1273 current_frame->top_left_y[i] = downto;
1274 current_frame->top_left_x[i] = leftmost;
4588ec20
JB
1275 }
1276#endif /* HAVE_X_WINDOWS */
1277 }
1278
e5d77022 1279#ifdef HAVE_X_WINDOWS
b6a65ac2 1280 if (FRAME_X_P (f))
448fd7c0 1281 downto += current_frame->pix_height[i];
e5d77022 1282#endif
4588ec20 1283 }
502b9b64 1284 pause = (i < FRAME_HEIGHT (f) - 1) ? i : 0;
4588ec20
JB
1285
1286 /* Now just clean up termcap drivers and set cursor, etc. */
1287 if (!pause)
1288 {
648fa17d
JB
1289 if (cursor_in_echo_area
1290 && FRAME_HAS_MINIBUF_P (f))
1113d9db 1291 {
648fa17d
JB
1292 int top = XINT (XWINDOW (FRAME_MINIBUF_WINDOW (f))->top);
1293 int row, col;
1294
1295 if (cursor_in_echo_area < 0)
1296 {
1297 row = top;
1298 col = 0;
1299 }
1113d9db 1300 else
648fa17d
JB
1301 {
1302 /* If the minibuffer is several lines high, find the last
1303 line that has any text on it. */
1304 row = FRAME_HEIGHT (f);
1305 do
1306 {
1307 row--;
1308 if (current_frame->enable[row])
1309 col = current_frame->used[row];
1310 else
1311 col = 0;
1312 }
1313 while (row > top && col == 0);
1314
1315 if (col >= FRAME_WIDTH (f))
1316 {
1317 col = 0;
1318 if (row < FRAME_HEIGHT (f) - 1)
1319 row++;
1320 }
1321 }
1322
1323 cursor_to (row, col);
1113d9db 1324 }
4588ec20 1325 else
502b9b64
JB
1326 cursor_to (FRAME_CURSOR_Y (f), max (min (FRAME_CURSOR_X (f),
1327 FRAME_WIDTH (f) - 1), 0));
4588ec20
JB
1328 }
1329
502b9b64 1330 update_end (f);
4588ec20
JB
1331
1332 if (termscript)
1333 fflush (termscript);
1334 fflush (stdout);
1335
1336 /* Here if output is preempted because input is detected. */
1337 do_pause:
1338
502b9b64 1339 if (FRAME_HEIGHT (f) == 0) abort (); /* Some bug zeros some core */
4588ec20
JB
1340 display_completed = !pause;
1341
f5843453 1342 bzero (FRAME_DESIRED_GLYPHS (f)->enable, FRAME_HEIGHT (f));
4588ec20
JB
1343 return pause;
1344}
1345
1346/* Called when about to quit, to check for doing so
1347 at an improper time. */
1348
1349void
1350quit_error_check ()
1351{
502b9b64 1352 if (FRAME_DESIRED_GLYPHS (selected_frame) == 0)
4588ec20 1353 return;
502b9b64 1354 if (FRAME_DESIRED_GLYPHS (selected_frame)->enable[0])
4588ec20 1355 abort ();
502b9b64 1356 if (FRAME_DESIRED_GLYPHS (selected_frame)->enable[FRAME_HEIGHT (selected_frame) - 1])
4588ec20
JB
1357 abort ();
1358}
1359\f
1360/* Decide what insert/delete line to do, and do it */
1361
1362extern void scrolling_1 ();
1363
502b9b64
JB
1364scrolling (frame)
1365 FRAME_PTR frame;
4588ec20
JB
1366{
1367 int unchanged_at_top, unchanged_at_bottom;
1368 int window_size;
1369 int changed_lines;
502b9b64
JB
1370 int *old_hash = (int *) alloca (FRAME_HEIGHT (frame) * sizeof (int));
1371 int *new_hash = (int *) alloca (FRAME_HEIGHT (frame) * sizeof (int));
1372 int *draw_cost = (int *) alloca (FRAME_HEIGHT (frame) * sizeof (int));
4588ec20 1373 register int i;
502b9b64
JB
1374 int free_at_end_vpos = FRAME_HEIGHT (frame);
1375 register struct frame_glyphs *current_frame = FRAME_CURRENT_GLYPHS (frame);
1376 register struct frame_glyphs *desired_frame = FRAME_DESIRED_GLYPHS (frame);
4588ec20
JB
1377
1378 /* Compute hash codes of all the lines.
1379 Also calculate number of changed lines,
1380 number of unchanged lines at the beginning,
1381 and number of unchanged lines at the end. */
1382
1383 changed_lines = 0;
1384 unchanged_at_top = 0;
502b9b64
JB
1385 unchanged_at_bottom = FRAME_HEIGHT (frame);
1386 for (i = 0; i < FRAME_HEIGHT (frame); i++)
4588ec20
JB
1387 {
1388 /* Give up on this scrolling if some old lines are not enabled. */
502b9b64 1389 if (!current_frame->enable[i])
4588ec20 1390 return 0;
502b9b64
JB
1391 old_hash[i] = line_hash_code (current_frame, i);
1392 if (! desired_frame->enable[i])
4588ec20
JB
1393 new_hash[i] = old_hash[i];
1394 else
502b9b64 1395 new_hash[i] = line_hash_code (desired_frame, i);
4588ec20
JB
1396
1397 if (old_hash[i] != new_hash[i])
1398 {
1399 changed_lines++;
502b9b64 1400 unchanged_at_bottom = FRAME_HEIGHT (frame) - i - 1;
4588ec20
JB
1401 }
1402 else if (i == unchanged_at_top)
1403 unchanged_at_top++;
502b9b64 1404 draw_cost[i] = line_draw_cost (desired_frame, i);
4588ec20
JB
1405 }
1406
1407 /* If changed lines are few, don't allow preemption, don't scroll. */
1408 if (changed_lines < baud_rate / 2400
502b9b64 1409 || unchanged_at_bottom == FRAME_HEIGHT (frame))
4588ec20
JB
1410 return 1;
1411
502b9b64 1412 window_size = (FRAME_HEIGHT (frame) - unchanged_at_top
4588ec20
JB
1413 - unchanged_at_bottom);
1414
1415 if (scroll_region_ok)
1416 free_at_end_vpos -= unchanged_at_bottom;
502b9b64 1417 else if (memory_below_frame)
4588ec20
JB
1418 free_at_end_vpos = -1;
1419
1420 /* If large window, fast terminal and few lines in common between
502b9b64 1421 current frame and desired frame, don't bother with i/d calc. */
4588ec20
JB
1422 if (window_size >= 18 && baud_rate > 2400
1423 && (window_size >=
1424 10 * scrolling_max_lines_saved (unchanged_at_top,
502b9b64 1425 FRAME_HEIGHT (frame) - unchanged_at_bottom,
4588ec20
JB
1426 old_hash, new_hash, draw_cost)))
1427 return 0;
1428
502b9b64 1429 scrolling_1 (frame, window_size, unchanged_at_top, unchanged_at_bottom,
4588ec20
JB
1430 draw_cost + unchanged_at_top - 1,
1431 old_hash + unchanged_at_top - 1,
1432 new_hash + unchanged_at_top - 1,
1433 free_at_end_vpos - unchanged_at_top);
1434
1435 return 0;
1436}
1437\f
1438/* Return the offset in its buffer of the character at location col, line
1439 in the given window. */
1440int
1441buffer_posn_from_coords (window, col, line)
1442 struct window *window;
1443 int col, line;
1444{
ef0fdbb1 1445 int hscroll = XINT (window->hscroll);
4588ec20
JB
1446 int window_left = XFASTINT (window->left);
1447
1448 /* The actual width of the window is window->width less one for the
efb859b4
JB
1449 DISP_CONTINUE_GLYPH, and less one if it's not the rightmost
1450 window. */
fa61c701 1451 int window_width = window_internal_width (window) - 1;
4588ec20 1452
efb859b4 1453 int startp = marker_position (window->start);
4588ec20
JB
1454
1455 /* Since compute_motion will only operate on the current buffer,
1456 we need to save the old one and restore it when we're done. */
1457 struct buffer *old_current_buffer = current_buffer;
efb859b4 1458 struct position *posn;
4588ec20
JB
1459
1460 current_buffer = XBUFFER (window->buffer);
1461
502b9b64
JB
1462 /* It would be nice if we could use FRAME_CURRENT_GLYPHS (XFRAME
1463 (window->frame))->bufp to avoid scanning from the very top of
efb859b4
JB
1464 the window, but it isn't maintained correctly, and I'm not even
1465 sure I will keep it. */
1466 posn = compute_motion (startp, 0,
1467 (window == XWINDOW (minibuf_window) && startp == 1
ef0fdbb1
KH
1468 ? minibuf_prompt_width : 0)
1469 + (hscroll ? 1 - hscroll : 0),
fb0f454a 1470 ZV, line, col,
e37f06d7 1471 window_width, hscroll, 0, window);
4588ec20
JB
1472
1473 current_buffer = old_current_buffer;
1474
502b9b64 1475 /* compute_motion considers frame points past the end of a line
efb859b4
JB
1476 to be *after* the newline, i.e. at the start of the next line.
1477 This is reasonable, but not really what we want. So if the
1478 result is on a line below LINE, back it up one character. */
1479 if (posn->vpos > line)
1480 return posn->bufpos - 1;
1481 else
1482 return posn->bufpos;
4588ec20
JB
1483}
1484\f
1485static int
1486count_blanks (r)
1487 register GLYPH *r;
1488{
1489 register GLYPH *p = r;
94aa5d2d
RS
1490 while (*p++ == SPACEGLYPH);
1491 return p - r - 1;
4588ec20
JB
1492}
1493
1494static int
1495count_match (str1, str2)
1496 GLYPH *str1, *str2;
1497{
1498 register GLYPH *p1 = str1;
1499 register GLYPH *p2 = str2;
1500 while (*p1++ == *p2++);
1501 return p1 - str1 - 1;
1502}
1503
1504/* Char insertion/deletion cost vector, from term.c */
1505extern int *char_ins_del_vector;
1506
945807a3 1507#define char_ins_del_cost(f) (&char_ins_del_vector[FRAME_WIDTH((f))])
4588ec20
JB
1508
1509static void
502b9b64
JB
1510update_line (frame, vpos)
1511 register FRAME_PTR frame;
4588ec20
JB
1512 int vpos;
1513{
1514 register GLYPH *obody, *nbody, *op1, *op2, *np1, *temp;
60a8948a 1515 int *temp1;
4588ec20
JB
1516 int tem;
1517 int osp, nsp, begmatch, endmatch, olen, nlen;
1518 int save;
502b9b64
JB
1519 register struct frame_glyphs *current_frame
1520 = FRAME_CURRENT_GLYPHS (frame);
1521 register struct frame_glyphs *desired_frame
1522 = FRAME_DESIRED_GLYPHS (frame);
4588ec20 1523
502b9b64
JB
1524 if (desired_frame->highlight[vpos]
1525 != (current_frame->enable[vpos] && current_frame->highlight[vpos]))
4588ec20 1526 {
502b9b64
JB
1527 change_line_highlight (desired_frame->highlight[vpos], vpos,
1528 (current_frame->enable[vpos] ?
1529 current_frame->used[vpos] : 0));
1530 current_frame->enable[vpos] = 0;
4588ec20
JB
1531 }
1532 else
502b9b64 1533 reassert_line_highlight (desired_frame->highlight[vpos], vpos);
4588ec20 1534
502b9b64 1535 if (! current_frame->enable[vpos])
4588ec20
JB
1536 {
1537 olen = 0;
1538 }
1539 else
1540 {
502b9b64
JB
1541 obody = current_frame->glyphs[vpos];
1542 olen = current_frame->used[vpos];
1543 if (! current_frame->highlight[vpos])
4588ec20
JB
1544 {
1545 if (!must_write_spaces)
1546 while (obody[olen - 1] == SPACEGLYPH && olen > 0)
1547 olen--;
1548 }
1549 else
1550 {
1551 /* For an inverse-video line, remember we gave it
502b9b64 1552 spaces all the way to the frame edge
4588ec20
JB
1553 so that the reverse video extends all the way across. */
1554
502b9b64 1555 while (olen < FRAME_WIDTH (frame) - 1)
4588ec20
JB
1556 obody[olen++] = SPACEGLYPH;
1557 }
1558 }
1559
1560 /* One way or another, this will enable the line being updated. */
502b9b64
JB
1561 current_frame->enable[vpos] = 1;
1562 current_frame->used[vpos] = desired_frame->used[vpos];
1563 current_frame->highlight[vpos] = desired_frame->highlight[vpos];
1564 current_frame->bufp[vpos] = desired_frame->bufp[vpos];
4588ec20
JB
1565
1566#ifdef HAVE_X_WINDOWS
b6a65ac2 1567 if (FRAME_X_P (frame))
4588ec20 1568 {
502b9b64
JB
1569 current_frame->pix_width[vpos]
1570 = current_frame->used[vpos]
1571 * FONT_WIDTH (frame->display.x->font);
1572 current_frame->pix_height[vpos]
39d1fe00 1573 = frame->display.x->line_height;
4588ec20
JB
1574 }
1575#endif /* HAVE_X_WINDOWS */
1576
502b9b64 1577 if (!desired_frame->enable[vpos])
4588ec20
JB
1578 {
1579 nlen = 0;
1580 goto just_erase;
1581 }
1582
502b9b64
JB
1583 nbody = desired_frame->glyphs[vpos];
1584 nlen = desired_frame->used[vpos];
4588ec20
JB
1585
1586 /* Pretend trailing spaces are not there at all,
1587 unless for one reason or another we must write all spaces. */
502b9b64 1588 if (! desired_frame->highlight[vpos])
4588ec20
JB
1589 {
1590 if (!must_write_spaces)
1591 /* We know that the previous character byte contains 0. */
1592 while (nbody[nlen - 1] == SPACEGLYPH)
1593 nlen--;
1594 }
1595 else
1596 {
1597 /* For an inverse-video line, give it extra trailing spaces
502b9b64 1598 all the way to the frame edge
4588ec20
JB
1599 so that the reverse video extends all the way across. */
1600
502b9b64 1601 while (nlen < FRAME_WIDTH (frame) - 1)
4588ec20
JB
1602 nbody[nlen++] = SPACEGLYPH;
1603 }
1604
1605 /* If there's no i/d char, quickly do the best we can without it. */
1606 if (!char_ins_del_ok)
1607 {
1608 int i,j;
1609
76426794
RS
1610#if 0
1611 if (FRAME_X_P (frame))
1612 {
1613 /* Under X, erase everything we are going to rewrite,
1614 and rewrite everything from the first char that's changed.
1615 This is part of supporting fonts like Courier
1616 whose chars can overlap outside the char width. */
1617 for (i = 0; i < nlen; i++)
1618 if (i >= olen || nbody[i] != obody[i])
1619 break;
1620
1621 cursor_to (vpos, i);
1622 if (i != olen)
1623 clear_end_of_line (olen);
1624 write_glyphs (nbody + i, nlen - i);
1625 }
1626 else
1627 {}
1628#endif /* 0 */
4588ec20
JB
1629 for (i = 0; i < nlen; i++)
1630 {
1631 if (i >= olen || nbody[i] != obody[i]) /* A non-matching char. */
1632 {
1633 cursor_to (vpos, i);
1634 for (j = 1; (i + j < nlen &&
1635 (i + j >= olen || nbody[i+j] != obody[i+j]));
1636 j++);
1637
1638 /* Output this run of non-matching chars. */
1639 write_glyphs (nbody + i, j);
1640 i += j - 1;
1641
1642 /* Now find the next non-match. */
1643 }
1644 }
1645
1646 /* Clear the rest of the line, or the non-clear part of it. */
1647 if (olen > nlen)
1648 {
1649 cursor_to (vpos, nlen);
1650 clear_end_of_line (olen);
1651 }
1652
502b9b64
JB
1653 /* Exchange contents between current_frame and new_frame. */
1654 temp = desired_frame->glyphs[vpos];
1655 desired_frame->glyphs[vpos] = current_frame->glyphs[vpos];
1656 current_frame->glyphs[vpos] = temp;
4588ec20 1657
60a8948a
RS
1658 /* Exchange charstarts between current_frame and new_frame. */
1659 temp1 = desired_frame->charstarts[vpos];
1660 desired_frame->charstarts[vpos] = current_frame->charstarts[vpos];
1661 current_frame->charstarts[vpos] = temp1;
1662
4588ec20
JB
1663 return;
1664 }
1665
1666 if (!olen)
1667 {
502b9b64 1668 nsp = (must_write_spaces || desired_frame->highlight[vpos])
4588ec20
JB
1669 ? 0 : count_blanks (nbody);
1670 if (nlen > nsp)
1671 {
1672 cursor_to (vpos, nsp);
1673 write_glyphs (nbody + nsp, nlen - nsp);
1674 }
1675
502b9b64
JB
1676 /* Exchange contents between current_frame and new_frame. */
1677 temp = desired_frame->glyphs[vpos];
1678 desired_frame->glyphs[vpos] = current_frame->glyphs[vpos];
1679 current_frame->glyphs[vpos] = temp;
4588ec20 1680
60a8948a
RS
1681 /* Exchange charstarts between current_frame and new_frame. */
1682 temp1 = desired_frame->charstarts[vpos];
1683 desired_frame->charstarts[vpos] = current_frame->charstarts[vpos];
1684 current_frame->charstarts[vpos] = temp1;
1685
4588ec20
JB
1686 return;
1687 }
1688
1689 obody[olen] = 1;
1690 save = nbody[nlen];
1691 nbody[nlen] = 0;
1692
1693 /* Compute number of leading blanks in old and new contents. */
1694 osp = count_blanks (obody);
502b9b64 1695 if (!desired_frame->highlight[vpos])
4588ec20
JB
1696 nsp = count_blanks (nbody);
1697 else
1698 nsp = 0;
1699
1700 /* Compute number of matching chars starting with first nonblank. */
1701 begmatch = count_match (obody + osp, nbody + nsp);
1702
1703 /* Spaces in new match implicit space past the end of old. */
1704 /* A bug causing this to be a no-op was fixed in 18.29. */
1705 if (!must_write_spaces && osp + begmatch == olen)
1706 {
1707 np1 = nbody + nsp;
1708 while (np1[begmatch] == SPACEGLYPH)
1709 begmatch++;
1710 }
1711
1712 /* Avoid doing insert/delete char
1713 just cause number of leading spaces differs
1714 when the following text does not match. */
1715 if (begmatch == 0 && osp != nsp)
1716 osp = nsp = min (osp, nsp);
1717
1718 /* Find matching characters at end of line */
1719 op1 = obody + olen;
1720 np1 = nbody + nlen;
1721 op2 = op1 + begmatch - min (olen - osp, nlen - nsp);
1722 while (op1 > op2 && op1[-1] == np1[-1])
1723 {
1724 op1--;
1725 np1--;
1726 }
1727 endmatch = obody + olen - op1;
1728
1729 /* Put correct value back in nbody[nlen].
1730 This is important because direct_output_for_insert
1731 can write into the line at a later point.
1732 If this screws up the zero at the end of the line, re-establish it. */
1733 nbody[nlen] = save;
1734 obody[olen] = 0;
1735
1736 /* tem gets the distance to insert or delete.
1737 endmatch is how many characters we save by doing so.
1738 Is it worth it? */
1739
1740 tem = (nlen - nsp) - (olen - osp);
1741 if (endmatch && tem
502b9b64 1742 && (!char_ins_del_ok || endmatch <= char_ins_del_cost (frame)[tem]))
4588ec20
JB
1743 endmatch = 0;
1744
1745 /* nsp - osp is the distance to insert or delete.
1746 If that is nonzero, begmatch is known to be nonzero also.
1747 begmatch + endmatch is how much we save by doing the ins/del.
1748 Is it worth it? */
1749
1750 if (nsp != osp
1751 && (!char_ins_del_ok
502b9b64 1752 || begmatch + endmatch <= char_ins_del_cost (frame)[nsp - osp]))
4588ec20
JB
1753 {
1754 begmatch = 0;
1755 endmatch = 0;
1756 osp = nsp = min (osp, nsp);
1757 }
1758
1759 /* Now go through the line, inserting, writing and
1760 deleting as appropriate. */
1761
1762 if (osp > nsp)
1763 {
1764 cursor_to (vpos, nsp);
1765 delete_glyphs (osp - nsp);
1766 }
1767 else if (nsp > osp)
1768 {
1769 /* If going to delete chars later in line
1770 and insert earlier in the line,
1771 must delete first to avoid losing data in the insert */
1772 if (endmatch && nlen < olen + nsp - osp)
1773 {
1774 cursor_to (vpos, nlen - endmatch + osp - nsp);
1775 delete_glyphs (olen + nsp - osp - nlen);
1776 olen = nlen - (nsp - osp);
1777 }
1778 cursor_to (vpos, osp);
1779 insert_glyphs ((char *)0, nsp - osp);
1780 }
1781 olen += nsp - osp;
1782
1783 tem = nsp + begmatch + endmatch;
1784 if (nlen != tem || olen != tem)
1785 {
1786 cursor_to (vpos, nsp + begmatch);
1787 if (!endmatch || nlen == olen)
1788 {
1789 /* If new text being written reaches right margin,
1790 there is no need to do clear-to-eol at the end.
1791 (and it would not be safe, since cursor is not
1792 going to be "at the margin" after the text is done) */
502b9b64 1793 if (nlen == FRAME_WIDTH (frame))
4588ec20
JB
1794 olen = 0;
1795 write_glyphs (nbody + nsp + begmatch, nlen - tem);
1796
1797#ifdef obsolete
1798
1799/* the following code loses disastrously if tem == nlen.
1800 Rather than trying to fix that case, I am trying the simpler
1801 solution found above. */
1802
1803 /* If the text reaches to the right margin,
1804 it will lose one way or another (depending on AutoWrap)
1805 to clear to end of line after outputting all the text.
1806 So pause with one character to go and clear the line then. */
502b9b64 1807 if (nlen == FRAME_WIDTH (frame) && fast_clear_end_of_line && olen > nlen)
4588ec20
JB
1808 {
1809 /* endmatch must be zero, and tem must equal nsp + begmatch */
1810 write_glyphs (nbody + tem, nlen - tem - 1);
1811 clear_end_of_line (olen);
1812 olen = 0; /* Don't let it be cleared again later */
1813 write_glyphs (nbody + nlen - 1, 1);
1814 }
1815 else
1816 write_glyphs (nbody + nsp + begmatch, nlen - tem);
1817#endif /* OBSOLETE */
1818
1819 }
1820 else if (nlen > olen)
1821 {
1822 write_glyphs (nbody + nsp + begmatch, olen - tem);
1823 insert_glyphs (nbody + nsp + begmatch + olen - tem, nlen - olen);
1824 olen = nlen;
1825 }
1826 else if (olen > nlen)
1827 {
1828 write_glyphs (nbody + nsp + begmatch, nlen - tem);
1829 delete_glyphs (olen - nlen);
1830 olen = nlen;
1831 }
1832 }
1833
1834 just_erase:
1835 /* If any unerased characters remain after the new line, erase them. */
1836 if (olen > nlen)
1837 {
1838 cursor_to (vpos, nlen);
1839 clear_end_of_line (olen);
1840 }
1841
502b9b64
JB
1842 /* Exchange contents between current_frame and new_frame. */
1843 temp = desired_frame->glyphs[vpos];
1844 desired_frame->glyphs[vpos] = current_frame->glyphs[vpos];
1845 current_frame->glyphs[vpos] = temp;
60a8948a
RS
1846
1847 /* Exchange charstarts between current_frame and new_frame. */
1848 temp1 = desired_frame->charstarts[vpos];
1849 desired_frame->charstarts[vpos] = current_frame->charstarts[vpos];
1850 current_frame->charstarts[vpos] = temp1;
4588ec20
JB
1851}
1852\f
1853DEFUN ("open-termscript", Fopen_termscript, Sopen_termscript,
1854 1, 1, "FOpen termscript file: ",
1855 "Start writing all terminal output to FILE as well as the terminal.\n\
1856FILE = nil means just close any termscript file currently open.")
1857 (file)
1858 Lisp_Object file;
1859{
1860 if (termscript != 0) fclose (termscript);
1861 termscript = 0;
1862
efb859b4 1863 if (! NILP (file))
4588ec20
JB
1864 {
1865 file = Fexpand_file_name (file, Qnil);
1866 termscript = fopen (XSTRING (file)->data, "w");
1867 if (termscript == 0)
1868 report_file_error ("Opening termscript", Fcons (file, Qnil));
1869 }
1870 return Qnil;
1871}
1872\f
1873
1874#ifdef SIGWINCH
efb859b4 1875SIGTYPE
4588ec20
JB
1876window_change_signal ()
1877{
1878 int width, height;
1879 extern int errno;
1880 int old_errno = errno;
1881
502b9b64 1882 get_frame_size (&width, &height);
4588ec20 1883
502b9b64
JB
1884 /* The frame size change obviously applies to a termcap-controlled
1885 frame. Find such a frame in the list, and assume it's the only
4588ec20 1886 one (since the redisplay code always writes to stdout, not a
502b9b64 1887 FILE * specified in the frame structure). Record the new size,
4588ec20
JB
1888 but don't reallocate the data structures now. Let that be done
1889 later outside of the signal handler. */
1890
1891 {
35f56f96 1892 Lisp_Object tail, frame;
4588ec20 1893
35f56f96 1894 FOR_EACH_FRAME (tail, frame)
4588ec20 1895 {
35f56f96 1896 if (FRAME_TERMCAP_P (XFRAME (frame)))
4588ec20 1897 {
35f56f96 1898 change_frame_size (XFRAME (frame), height, width, 0, 1);
4588ec20
JB
1899 break;
1900 }
1901 }
1902 }
1903
1904 signal (SIGWINCH, window_change_signal);
1905 errno = old_errno;
1906}
1907#endif /* SIGWINCH */
1908
1909
502b9b64 1910/* Do any change in frame size that was requested by a signal. */
4588ec20
JB
1911
1912do_pending_window_change ()
1913{
1914 /* If window_change_signal should have run before, run it now. */
1915 while (delayed_size_change)
1916 {
35f56f96 1917 Lisp_Object tail, frame;
4588ec20
JB
1918
1919 delayed_size_change = 0;
1920
35f56f96 1921 FOR_EACH_FRAME (tail, frame)
4588ec20 1922 {
35f56f96
JB
1923 FRAME_PTR f = XFRAME (frame);
1924
502b9b64
JB
1925 int height = FRAME_NEW_HEIGHT (f);
1926 int width = FRAME_NEW_WIDTH (f);
4588ec20 1927
08f7aa3e 1928 if (height != 0 || width != 0)
b6a65ac2 1929 change_frame_size (f, height, width, 0, 0);
4588ec20
JB
1930 }
1931 }
1932}
1933
1934
502b9b64 1935/* Change the frame height and/or width. Values may be given as zero to
b6a65ac2 1936 indicate no change is to take place.
4588ec20 1937
b6a65ac2
JB
1938 If DELAY is non-zero, then assume we're being called from a signal
1939 handler, and queue the change for later - perhaps the next
1940 redisplay. Since this tries to resize windows, we can't call it
1941 from a signal handler. */
1942
1943change_frame_size (frame, newheight, newwidth, pretend, delay)
502b9b64 1944 register FRAME_PTR frame;
b6a65ac2 1945 int newheight, newwidth, pretend;
4588ec20
JB
1946{
1947 /* If we can't deal with the change now, queue it for later. */
b6a65ac2 1948 if (delay)
4588ec20 1949 {
b6a65ac2 1950 FRAME_NEW_HEIGHT (frame) = newheight;
502b9b64 1951 FRAME_NEW_WIDTH (frame) = newwidth;
4588ec20
JB
1952 delayed_size_change = 1;
1953 return;
1954 }
1955
502b9b64
JB
1956 /* This size-change overrides any pending one for this frame. */
1957 FRAME_NEW_HEIGHT (frame) = 0;
b6a65ac2
JB
1958 FRAME_NEW_WIDTH (frame) = 0;
1959
08f7aa3e 1960 /* If an argument is zero, set it to the current value. */
b6a65ac2
JB
1961 newheight || (newheight = FRAME_HEIGHT (frame));
1962 newwidth || (newwidth = FRAME_WIDTH (frame));
4588ec20 1963
b6a65ac2
JB
1964 /* Round up to the smallest acceptable size. */
1965 check_frame_size (frame, &newheight, &newwidth);
1966
1967 /* If we're not changing the frame size, quit now. */
1968 if (newheight == FRAME_HEIGHT (frame)
1969 && newwidth == FRAME_WIDTH (frame))
4588ec20
JB
1970 return;
1971
b6a65ac2 1972 if (newheight != FRAME_HEIGHT (frame))
4588ec20 1973 {
b6a65ac2 1974 if (FRAME_HAS_MINIBUF_P (frame)
502b9b64 1975 && ! FRAME_MINIBUF_ONLY_P (frame))
4588ec20 1976 {
502b9b64
JB
1977 /* Frame has both root and minibuffer. */
1978 set_window_height (FRAME_ROOT_WINDOW (frame),
cb470ab1 1979 newheight - 1 - FRAME_MENU_BAR_LINES (frame), 0);
502b9b64 1980 XFASTINT (XWINDOW (FRAME_MINIBUF_WINDOW (frame))->top)
b6a65ac2 1981 = newheight - 1;
502b9b64 1982 set_window_height (FRAME_MINIBUF_WINDOW (frame), 1, 0);
4588ec20
JB
1983 }
1984 else
502b9b64 1985 /* Frame has just one top-level window. */
cb470ab1
RS
1986 set_window_height (FRAME_ROOT_WINDOW (frame),
1987 newheight - FRAME_MENU_BAR_LINES (frame), 0);
b6a65ac2
JB
1988
1989 if (FRAME_TERMCAP_P (frame) && !pretend)
1990 FrameRows = newheight;
4588ec20
JB
1991
1992#if 0
502b9b64 1993 if (frame->output_method == output_termcap)
4588ec20 1994 {
b6a65ac2 1995 frame_height = newheight;
4588ec20 1996 if (!pretend)
b6a65ac2 1997 FrameRows = newheight;
4588ec20
JB
1998 }
1999#endif
2000 }
2001
b6a65ac2 2002 if (newwidth != FRAME_WIDTH (frame))
4588ec20 2003 {
502b9b64 2004 set_window_width (FRAME_ROOT_WINDOW (frame), newwidth, 0);
b6a65ac2 2005 if (FRAME_HAS_MINIBUF_P (frame))
502b9b64 2006 set_window_width (FRAME_MINIBUF_WINDOW (frame), newwidth, 0);
4588ec20 2007
b6a65ac2 2008 if (FRAME_TERMCAP_P (frame) && !pretend)
502b9b64 2009 FrameCols = newwidth;
4588ec20 2010#if 0
502b9b64 2011 if (frame->output_method == output_termcap)
4588ec20 2012 {
502b9b64 2013 frame_width = newwidth;
4588ec20 2014 if (!pretend)
502b9b64 2015 FrameCols = newwidth;
4588ec20
JB
2016 }
2017#endif
2018 }
2019
b6a65ac2
JB
2020 FRAME_HEIGHT (frame) = newheight;
2021 FRAME_WIDTH (frame) = newwidth;
2022
502b9b64
JB
2023 remake_frame_glyphs (frame);
2024 calculate_costs (frame);
4588ec20
JB
2025}
2026\f
2027DEFUN ("send-string-to-terminal", Fsend_string_to_terminal,
2028 Ssend_string_to_terminal, 1, 1, 0,
2029 "Send STRING to the terminal without alteration.\n\
2030Control characters in STRING will have terminal-dependent effects.")
2031 (str)
2032 Lisp_Object str;
2033{
2034 CHECK_STRING (str, 0);
2035 fwrite (XSTRING (str)->data, 1, XSTRING (str)->size, stdout);
2036 fflush (stdout);
2037 if (termscript)
2038 {
2039 fwrite (XSTRING (str)->data, 1, XSTRING (str)->size, termscript);
2040 fflush (termscript);
2041 }
2042 return Qnil;
2043}
2044
2045DEFUN ("ding", Fding, Sding, 0, 1, 0,
2046 "Beep, or flash the screen.\n\
2047Also, unless an argument is given,\n\
2048terminate any keyboard macro currently executing.")
2049 (arg)
2050 Lisp_Object arg;
2051{
efb859b4 2052 if (!NILP (arg))
4588ec20 2053 {
7fa788da
RS
2054 if (noninteractive)
2055 putchar (07);
2056 else
2057 ring_bell ();
4588ec20
JB
2058 fflush (stdout);
2059 }
2060 else
2061 bitch_at_user ();
2062
2063 return Qnil;
2064}
2065
2066bitch_at_user ()
2067{
2068 if (noninteractive)
2069 putchar (07);
2070 else if (!INTERACTIVE) /* Stop executing a keyboard macro. */
2071 error ("Keyboard macro terminated by a command ringing the bell");
2072 else
2073 ring_bell ();
2074 fflush (stdout);
2075}
2076
2077DEFUN ("sleep-for", Fsleep_for, Ssleep_for, 1, 2, 0,
767229f8 2078 "Pause, without updating display, for SECONDS seconds.\n\
b07646f5
JB
2079SECONDS may be a floating-point value, meaning that you can wait for a\n\
2080fraction of a second. Optional second arg MILLISECONDS specifies an\n\
2081additional wait period, in milliseconds; this may be useful if your\n\
2082Emacs was built without floating point support.\n\
2083\(Not all operating systems support waiting for a fraction of a second.)")
767229f8
JB
2084 (seconds, milliseconds)
2085 Lisp_Object seconds, milliseconds;
4588ec20 2086{
767229f8 2087 int sec, usec;
4588ec20 2088
767229f8
JB
2089 if (NILP (milliseconds))
2090 XSET (milliseconds, Lisp_Int, 0);
2091 else
2092 CHECK_NUMBER (milliseconds, 1);
b07646f5
JB
2093 usec = XINT (milliseconds) * 1000;
2094
2095#ifdef LISP_FLOAT_TYPE
2096 {
2097 double duration = extract_float (seconds);
2098 sec = (int) duration;
2099 usec += (duration - sec) * 1000000;
2100 }
2101#else
2102 CHECK_NUMBER (seconds, 0);
2103 sec = XINT (seconds);
2104#endif
4588ec20 2105
a41f8bed 2106#ifndef EMACS_HAS_USECS
767229f8
JB
2107 if (sec == 0 && usec != 0)
2108 error ("millisecond `sleep-for' not supported on %s", SYSTEM_TYPE);
4588ec20 2109#endif
767229f8
JB
2110
2111 /* Assure that 0 <= usec < 1000000. */
2112 if (usec < 0)
2113 {
2114 /* We can't rely on the rounding being correct if user is negative. */
2115 if (-1000000 < usec)
2116 sec--, usec += 1000000;
2117 else
2118 sec -= -usec / 1000000, usec = 1000000 - (-usec % 1000000);
4588ec20 2119 }
767229f8
JB
2120 else
2121 sec += usec / 1000000, usec %= 1000000;
2122
5c48f0da 2123 if (sec <= 0)
767229f8 2124 return Qnil;
4588ec20 2125
f76475ad
JB
2126 {
2127 Lisp_Object zero;
2128
2129 XFASTINT (zero) = 0;
2130 wait_reading_process_input (sec, usec, zero, 0);
2131 }
d1af74e9 2132
767229f8
JB
2133 /* We should always have wait_reading_process_input; we have a dummy
2134 implementation for systems which don't support subprocesses. */
2135#if 0
2136 /* No wait_reading_process_input */
4588ec20
JB
2137 immediate_quit = 1;
2138 QUIT;
2139
2140#ifdef VMS
2141 sys_sleep (sec);
2142#else /* not VMS */
2143/* The reason this is done this way
2144 (rather than defined (H_S) && defined (H_T))
2145 is because the VMS preprocessor doesn't grok `defined' */
2146#ifdef HAVE_SELECT
a41f8bed
JB
2147 EMACS_GET_TIME (end_time);
2148 EMACS_SET_SECS_USECS (timeout, sec, usec);
d1af74e9 2149 EMACS_ADD_TIME (end_time, end_time, timeout);
a41f8bed 2150
4588ec20
JB
2151 while (1)
2152 {
a41f8bed
JB
2153 EMACS_GET_TIME (timeout);
2154 EMACS_SUB_TIME (timeout, end_time, timeout);
2155 if (EMACS_TIME_NEG_P (timeout)
2156 || !select (1, 0, 0, 0, &timeout))
4588ec20
JB
2157 break;
2158 }
4588ec20
JB
2159#else /* not HAVE_SELECT */
2160 sleep (sec);
2161#endif /* HAVE_SELECT */
2162#endif /* not VMS */
2163
2164 immediate_quit = 0;
2165#endif /* no subprocesses */
2166
2167 return Qnil;
2168}
2169
f76475ad
JB
2170/* This is just like wait_reading_process_input, except that
2171 it does the redisplay.
2172
ea0d86af
RS
2173 It's also much like Fsit_for, except that it can be used for
2174 waiting for input as well. One differnce is that sit_for
2175 does not call prepare_menu_bars; Fsit_for does call that. */
4588ec20 2176
f76475ad
JB
2177Lisp_Object
2178sit_for (sec, usec, reading, display)
2179 int sec, usec, reading, display;
2180{
2181 Lisp_Object read_kbd;
4588ec20
JB
2182
2183 if (detect_input_pending ())
2184 return Qnil;
4588ec20 2185
f76475ad
JB
2186 if (display)
2187 redisplay_preserve_echo_area ();
4588ec20 2188
dfdb645c
JB
2189 if (sec == 0 && usec == 0)
2190 return Qt;
2191
4588ec20 2192#ifdef SIGIO
8fc798e9 2193 gobble_input (0);
f76475ad
JB
2194#endif
2195
2196 XSET (read_kbd, Lisp_Int, reading ? -1 : 1);
2197 wait_reading_process_input (sec, usec, read_kbd, display);
2198
d1af74e9 2199
500ab754
JB
2200 /* wait_reading_process_input should always be available now; it is
2201 simulated in a simple way on systems that don't support
2202 subprocesses. */
2203#if 0
2204 /* No wait_reading_process_input available. */
4588ec20
JB
2205 immediate_quit = 1;
2206 QUIT;
2207
2208 waitchannels = 1;
2209#ifdef VMS
f76475ad 2210 input_wait_timeout (XINT (arg));
4588ec20 2211#else /* not VMS */
d1af74e9
JB
2212#ifndef HAVE_TIMEVAL
2213 timeout_sec = sec;
2214 select (1, &waitchannels, 0, 0, &timeout_sec);
2215#else /* HAVE_TIMEVAL */
2216 timeout.tv_sec = sec;
2217 timeout.tv_usec = usec;
4588ec20 2218 select (1, &waitchannels, 0, 0, &timeout);
d1af74e9 2219#endif /* HAVE_TIMEVAL */
4588ec20
JB
2220#endif /* not VMS */
2221
2222 immediate_quit = 0;
d1af74e9 2223#endif
4588ec20
JB
2224
2225 return detect_input_pending () ? Qnil : Qt;
2226}
2227
f76475ad 2228DEFUN ("sit-for", Fsit_for, Ssit_for, 1, 3, 0,
767229f8 2229 "Perform redisplay, then wait for SECONDS seconds or until input is available.\n\
b07646f5
JB
2230SECONDS may be a floating-point value, meaning that you can wait for a\n\
2231fraction of a second. Optional second arg MILLISECONDS specifies an\n\
2232additional wait period, in milliseconds; this may be useful if your\n\
2233Emacs was built without floating point support.\n\
2234\(Not all operating systems support waiting for a fraction of a second.)\n\
f76475ad
JB
2235Optional third arg non-nil means don't redisplay, just wait for input.\n\
2236Redisplay is preempted as always if input arrives, and does not happen\n\
2237if input is available before it starts.\n\
2238Value is t if waited the full time with no input arriving.")
767229f8
JB
2239 (seconds, milliseconds, nodisp)
2240 Lisp_Object seconds, milliseconds, nodisp;
f76475ad 2241{
767229f8 2242 int sec, usec;
f76475ad 2243
767229f8
JB
2244 if (NILP (milliseconds))
2245 XSET (milliseconds, Lisp_Int, 0);
2246 else
2247 CHECK_NUMBER (milliseconds, 1);
b07646f5
JB
2248 usec = XINT (milliseconds) * 1000;
2249
2250#ifdef LISP_FLOAT_TYPE
2251 {
2252 double duration = extract_float (seconds);
2253 sec = (int) duration;
2254 usec += (duration - sec) * 1000000;
2255 }
2256#else
2257 CHECK_NUMBER (seconds, 0);
2258 sec = XINT (seconds);
2259#endif
f76475ad 2260
f76475ad 2261#ifndef EMACS_HAS_USECS
767229f8
JB
2262 if (usec != 0 && sec == 0)
2263 error ("millisecond `sit-for' not supported on %s", SYSTEM_TYPE);
f76475ad 2264#endif
f76475ad 2265
ea0d86af
RS
2266 if (NILP (nodisp))
2267 prepare_menu_bars ();
f76475ad
JB
2268 return sit_for (sec, usec, 0, NILP (nodisp));
2269}
4588ec20
JB
2270\f
2271char *terminal_type;
2272
2273/* Initialization done when Emacs fork is started, before doing stty. */
2274/* Determine terminal type and set terminal_driver */
2275/* Then invoke its decoding routine to set up variables
2276 in the terminal package */
2277
2278init_display ()
2279{
2280#ifdef HAVE_X_WINDOWS
2281 extern int display_arg;
2282#endif
2283
2284 meta_key = 0;
2285 inverse_video = 0;
2286 cursor_in_echo_area = 0;
2287 terminal_type = (char *) 0;
2288
1315c181
JB
2289 /* Now is the time to initialize this; it's used by init_sys_modes
2290 during startup. */
2291 Vwindow_system = Qnil;
4588ec20 2292
1315c181
JB
2293 /* If the user wants to use a window system, we shouldn't bother
2294 initializing the terminal. This is especially important when the
2295 terminal is so dumb that emacs gives up before and doesn't bother
2296 using the window system.
4588ec20 2297
1315c181
JB
2298 If the DISPLAY environment variable is set, try to use X, and die
2299 with an error message if that doesn't work. */
4588ec20
JB
2300
2301#ifdef HAVE_X_WINDOWS
d460af17
JB
2302 if (! display_arg)
2303 {
2304#ifdef VMS
5de9f849 2305 display_arg = (getenv ("DECW$DISPLAY") != 0);
d460af17 2306#else
5de9f849 2307 display_arg = (getenv ("DISPLAY") != 0);
d460af17 2308#endif
f040093a 2309 }
d460af17
JB
2310
2311 if (!inhibit_window_system && display_arg)
4588ec20
JB
2312 {
2313 Vwindow_system = intern ("x");
2314#ifdef HAVE_X11
2315 Vwindow_system_version = make_number (11);
2316#else
2317 Vwindow_system_version = make_number (10);
2318#endif
2319 return;
2320 }
2321#endif /* HAVE_X_WINDOWS */
2322
2323 /* If no window system has been specified, try to use the terminal. */
2324 if (! isatty (0))
2325 {
2326 fprintf (stderr, "emacs: standard input is not a tty\n");
2327 exit (1);
2328 }
2329
2330 /* Look at the TERM variable */
2331 terminal_type = (char *) getenv ("TERM");
2332 if (!terminal_type)
2333 {
2334#ifdef VMS
2335 fprintf (stderr, "Please specify your terminal type.\n\
2336For types defined in VMS, use set term /device=TYPE.\n\
2337For types not defined in VMS, use define emacs_term \"TYPE\".\n\
2338\(The quotation marks are necessary since terminal types are lower case.)\n");
2339#else
2340 fprintf (stderr, "Please set the environment variable TERM; see tset(1).\n");
2341#endif
2342 exit (1);
2343 }
2344
2345#ifdef VMS
2346 /* VMS DCL tends to upcase things, so downcase term type.
2347 Hardly any uppercase letters in terminal types; should be none. */
2348 {
2349 char *new = (char *) xmalloc (strlen (terminal_type) + 1);
2350 char *p;
2351
2352 strcpy (new, terminal_type);
2353
2354 for (p = new; *p; p++)
2355 if (isupper (*p))
2356 *p = tolower (*p);
2357
2358 terminal_type = new;
2359 }
2360#endif
2361
2362 term_init (terminal_type);
2363
502b9b64
JB
2364 remake_frame_glyphs (selected_frame);
2365 calculate_costs (selected_frame);
4588ec20
JB
2366
2367 /* X and Y coordinates of the cursor between updates. */
502b9b64
JB
2368 FRAME_CURSOR_X (selected_frame) = 0;
2369 FRAME_CURSOR_Y (selected_frame) = 0;
4588ec20
JB
2370
2371#ifdef SIGWINCH
2372#ifndef CANNOT_DUMP
2373 if (initialized)
2374#endif /* CANNOT_DUMP */
2375 signal (SIGWINCH, window_change_signal);
2376#endif /* SIGWINCH */
2377}
2378\f
2379syms_of_display ()
2380{
502b9b64
JB
2381#ifdef MULTI_FRAME
2382 defsubr (&Sredraw_frame);
4588ec20
JB
2383#endif
2384 defsubr (&Sredraw_display);
2385 defsubr (&Sopen_termscript);
2386 defsubr (&Sding);
2387 defsubr (&Ssit_for);
2388 defsubr (&Ssleep_for);
2389 defsubr (&Ssend_string_to_terminal);
2390
2391 DEFVAR_INT ("baud-rate", &baud_rate,
2392 "The output baud rate of the terminal.\n\
2393On most systems, changing this value will affect the amount of padding\n\
2394and the other strategic decisions made during redisplay.");
2395 DEFVAR_BOOL ("inverse-video", &inverse_video,
502b9b64 2396 "*Non-nil means invert the entire frame display.\n\
4588ec20
JB
2397This means everything is in inverse video which otherwise would not be.");
2398 DEFVAR_BOOL ("visible-bell", &visible_bell,
502b9b64 2399 "*Non-nil means try to flash the frame to represent a bell.");
4588ec20 2400 DEFVAR_BOOL ("no-redraw-on-reenter", &no_redraw_on_reenter,
502b9b64 2401 "*Non-nil means no need to redraw entire frame after suspending.\n\
4588ec20 2402A non-nil value is useful if the terminal can automatically preserve\n\
502b9b64 2403Emacs's frame display when you reenter Emacs.\n\
4588ec20
JB
2404It is up to you to set this variable if your terminal can do that.");
2405 DEFVAR_LISP ("window-system", &Vwindow_system,
2406 "A symbol naming the window-system under which Emacs is running\n\
2407\(such as `x'), or nil if emacs is running on an ordinary terminal.");
2408 DEFVAR_LISP ("window-system-version", &Vwindow_system_version,
2409 "The version number of the window system in use.\n\
2410For X windows, this is 10 or 11.");
2411 DEFVAR_BOOL ("cursor-in-echo-area", &cursor_in_echo_area,
2412 "Non-nil means put cursor in minibuffer, at end of any message there.");
2413 DEFVAR_LISP ("glyph-table", &Vglyph_table,
502b9b64 2414 "Table defining how to output a glyph code to the frame.\n\
4588ec20
JB
2415If not nil, this is a vector indexed by glyph code to define the glyph.\n\
2416Each element can be:\n\
2417 integer: a glyph code which this glyph is an alias for.\n\
2418 string: output this glyph using that string (not impl. in X windows).\n\
2419 nil: this glyph mod 256 is char code to output,\n\
6666f05a 2420 and this glyph / 256 is face code for X windows (see `face-id').");
4588ec20
JB
2421 Vglyph_table = Qnil;
2422
2423 DEFVAR_LISP ("standard-display-table", &Vstandard_display_table,
2424 "Display table to use for buffers that specify none.\n\
2425See `buffer-display-table' for more information.");
2426 Vstandard_display_table = Qnil;
2427
2428 /* Initialize `window-system', unless init_display already decided it. */
2429#ifdef CANNOT_DUMP
2430 if (noninteractive)
2431#endif
2432 {
2433 Vwindow_system = Qnil;
2434 Vwindow_system_version = Qnil;
2435 }
2436}