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