*** empty log message ***
[bpt/emacs.git] / src / term.c
CommitLineData
08a24c47 1/* terminal control module for terminals described by TERMCAP
a168702a
GM
2 Copyright (C) 1985, 86, 87, 93, 94, 95, 98
3 Free Software Foundation, Inc.
08a24c47
JB
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
4746118a 9the Free Software Foundation; either version 2, or (at your option)
08a24c47
JB
10any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs; see the file COPYING. If not, write to
3b7ad313
EN
19the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20Boston, MA 02111-1307, USA. */
08a24c47 21
a168702a
GM
22/* New redisplay, TTY faces by Gerd Moellmann <gerd@acm.org>. */
23
08a24c47 24
565620a5 25#include <config.h>
08a24c47
JB
26#include <stdio.h>
27#include <ctype.h>
a168702a 28#include <string.h>
08a24c47
JB
29#include "termchar.h"
30#include "termopts.h"
08a24c47 31#include "lisp.h"
a4decb7f
KH
32#include "charset.h"
33#include "coding.h"
ff11dfa1 34#include "frame.h"
08a24c47
JB
35#include "disptab.h"
36#include "termhooks.h"
5c2c7893 37#include "keyboard.h"
dfcf069d 38#include "dispextern.h"
a168702a
GM
39#include "window.h"
40
b0f61f15
GM
41#ifdef HAVE_TERMCAP_H
42#include <termcap.h>
43#endif
44
eccec691 45#include "cm.h"
dfcf069d
AS
46#ifdef HAVE_X_WINDOWS
47#include "xterm.h"
48#endif
c8951b18 49
a168702a
GM
50static void turn_on_face P_ ((struct frame *, int face_id));
51static void turn_off_face P_ ((struct frame *, int face_id));
52static void tty_show_cursor P_ ((void));
53static void tty_hide_cursor P_ ((void));
54
08a24c47
JB
55#define max(a, b) ((a) > (b) ? (a) : (b))
56#define min(a, b) ((a) < (b) ? (a) : (b))
57
e52f4e08
GM
58#define OUTPUT(a) \
59 tputs (a, (int) (FRAME_HEIGHT (XFRAME (selected_frame)) - curY), cmputc)
08a24c47
JB
60#define OUTPUT1(a) tputs (a, 1, cmputc)
61#define OUTPUTL(a, lines) tputs (a, lines, cmputc)
a168702a 62
b0f61f15
GM
63#define OUTPUT_IF(a) \
64 do { \
65 if (a) \
66 tputs (a, (int) (FRAME_HEIGHT (XFRAME (selected_frame)) \
67 - curY), cmputc); \
68 } while (0)
a168702a 69
b0f61f15 70#define OUTPUT1_IF(a) do { if (a) tputs (a, 1, cmputc); } while (0)
08a24c47 71
c291d9ef 72/* Function to use to ring the bell. */
a168702a 73
c291d9ef
RS
74Lisp_Object Vring_bell_function;
75
eb8c3be9 76/* Terminal characteristics that higher levels want to look at.
08a24c47
JB
77 These are all extern'd in termchar.h */
78
08a24c47
JB
79int must_write_spaces; /* Nonzero means spaces in the text
80 must actually be output; can't just skip
81 over some columns to leave them blank. */
82int min_padding_speed; /* Speed below which no padding necessary */
83
84int line_ins_del_ok; /* Terminal can insert and delete lines */
85int char_ins_del_ok; /* Terminal can insert and delete chars */
86int scroll_region_ok; /* Terminal supports setting the
87 scroll window */
be7cd44f
RS
88int scroll_region_cost; /* Cost of setting a scroll window,
89 measured in characters */
ff11dfa1 90int memory_below_frame; /* Terminal remembers lines
08a24c47
JB
91 scrolled off bottom */
92int fast_clear_end_of_line; /* Terminal has a `ce' string */
93
ff11dfa1 94/* Nonzero means no need to redraw the entire frame on resuming
08a24c47
JB
95 a suspended Emacs. This is useful on terminals with multiple pages,
96 where one page is used for Emacs and another for all else. */
a168702a 97
08a24c47
JB
98int no_redraw_on_reenter;
99
100/* Hook functions that you can set to snap out the functions in this file.
101 These are all extern'd in termhooks.h */
102
dfcf069d
AS
103void (*cursor_to_hook) P_ ((int, int));
104void (*raw_cursor_to_hook) P_ ((int, int));
dfcf069d
AS
105void (*clear_to_end_hook) P_ ((void));
106void (*clear_frame_hook) P_ ((void));
107void (*clear_end_of_line_hook) P_ ((int));
08a24c47 108
dfcf069d 109void (*ins_del_lines_hook) P_ ((int, int));
08a24c47 110
a168702a 111void (*change_line_highlight_hook) P_ ((int, int, int, int));
dfcf069d 112void (*reassert_line_highlight_hook) P_ ((int, int));
08a24c47 113
dfcf069d 114void (*delete_glyphs_hook) P_ ((int));
08a24c47 115
dfcf069d 116void (*ring_bell_hook) P_ ((void));
08a24c47 117
dfcf069d
AS
118void (*reset_terminal_modes_hook) P_ ((void));
119void (*set_terminal_modes_hook) P_ ((void));
120void (*update_begin_hook) P_ ((struct frame *));
121void (*update_end_hook) P_ ((struct frame *));
122void (*set_terminal_window_hook) P_ ((int));
a168702a
GM
123void (*insert_glyphs_hook) P_ ((struct glyph *, int));
124void (*write_glyphs_hook) P_ ((struct glyph *, int));
125void (*delete_glyphs_hook) P_ ((int));
08a24c47 126
dfcf069d 127int (*read_socket_hook) P_ ((int, struct input_event *, int, int));
08a24c47 128
dfcf069d 129void (*frame_up_to_date_hook) P_ ((struct frame *));
55cc089c 130
20a558dc 131/* Return the current position of the mouse.
371fbaeb
JB
132
133 Set *f to the frame the mouse is in, or zero if the mouse is in no
134 Emacs frame. If it is set to zero, all the other arguments are
135 garbage.
136
a3c87d4e
JB
137 If the motion started in a scroll bar, set *bar_window to the
138 scroll bar's window, *part to the part the mouse is currently over,
139 *x to the position of the mouse along the scroll bar, and *y to the
140 overall length of the scroll bar.
371fbaeb
JB
141
142 Otherwise, set *bar_window to Qnil, and *x and *y to the column and
143 row of the character cell the mouse is over.
144
145 Set *time to the time the mouse was at the returned position.
146
147 This should clear mouse_moved until the next motion
148 event arrives. */
dfcf069d 149void (*mouse_position_hook) P_ ((FRAME_PTR *f, int insist,
371fbaeb 150 Lisp_Object *bar_window,
a3c87d4e 151 enum scroll_bar_part *part,
20a558dc
JB
152 Lisp_Object *x,
153 Lisp_Object *y,
dfcf069d 154 unsigned long *time));
08a24c47 155
ff11dfa1 156/* When reading from a minibuffer in a different frame, Emacs wants
a168702a 157 to shift the highlight from the selected frame to the mini-buffer's
ff11dfa1 158 frame; under X, this means it lies about where the focus is.
2e146aa4
JB
159 This hook tells the window system code to re-decide where to put
160 the highlight. */
dfcf069d 161void (*frame_rehighlight_hook) P_ ((FRAME_PTR f));
2e146aa4 162
dbc4e1c1
JB
163/* If we're displaying frames using a window system that can stack
164 frames on top of each other, this hook allows you to bring a frame
165 to the front, or bury it behind all the other windows. If this
166 hook is zero, that means the device we're displaying on doesn't
167 support overlapping frames, so there's no need to raise or lower
168 anything.
169
170 If RAISE is non-zero, F is brought to the front, before all other
171 windows. If RAISE is zero, F is sent to the back, behind all other
172 windows. */
dfcf069d 173void (*frame_raise_lower_hook) P_ ((FRAME_PTR f, int raise));
dbc4e1c1 174
a3c87d4e 175/* Set the vertical scroll bar for WINDOW to have its upper left corner
371fbaeb
JB
176 at (TOP, LEFT), and be LENGTH rows high. Set its handle to
177 indicate that we are displaying PORTION characters out of a total
178 of WHOLE characters, starting at POSITION. If WINDOW doesn't yet
a3c87d4e 179 have a scroll bar, create one for it. */
a168702a 180
a3c87d4e 181void (*set_vertical_scroll_bar_hook)
dfcf069d
AS
182 P_ ((struct window *window,
183 int portion, int whole, int position));
20a558dc 184
371fbaeb 185
20a558dc 186/* The following three hooks are used when we're doing a thorough
a3c87d4e 187 redisplay of the frame. We don't explicitly know which scroll bars
20a558dc
JB
188 are going to be deleted, because keeping track of when windows go
189 away is a real pain - can you say set-window-configuration?
190 Instead, we just assert at the beginning of redisplay that *all*
a3c87d4e 191 scroll bars are to be removed, and then save scroll bars from the
8e6208c5 192 fiery pit when we actually redisplay their window. */
20a558dc 193
a3c87d4e
JB
194/* Arrange for all scroll bars on FRAME to be removed at the next call
195 to `*judge_scroll_bars_hook'. A scroll bar may be spared if
a168702a 196 `*redeem_scroll_bar_hook' is applied to its window before the judgment.
20a558dc 197
371fbaeb 198 This should be applied to each frame each time its window tree is
a3c87d4e
JB
199 redisplayed, even if it is not displaying scroll bars at the moment;
200 if the HAS_SCROLL_BARS flag has just been turned off, only calling
201 this and the judge_scroll_bars_hook will get rid of them.
371fbaeb
JB
202
203 If non-zero, this hook should be safe to apply to any frame,
a3c87d4e 204 whether or not it can support scroll bars, and whether or not it is
371fbaeb 205 currently displaying them. */
dfcf069d 206void (*condemn_scroll_bars_hook) P_ ((FRAME_PTR frame));
371fbaeb 207
a3c87d4e
JB
208/* Unmark WINDOW's scroll bar for deletion in this judgement cycle.
209 Note that it's okay to redeem a scroll bar that is not condemned. */
dfcf069d 210void (*redeem_scroll_bar_hook) P_ ((struct window *window));
20a558dc 211
a3c87d4e
JB
212/* Remove all scroll bars on FRAME that haven't been saved since the
213 last call to `*condemn_scroll_bars_hook'.
20a558dc 214
371fbaeb 215 This should be applied to each frame after each time its window
a3c87d4e
JB
216 tree is redisplayed, even if it is not displaying scroll bars at the
217 moment; if the HAS_SCROLL_BARS flag has just been turned off, only
218 calling this and condemn_scroll_bars_hook will get rid of them.
371fbaeb
JB
219
220 If non-zero, this hook should be safe to apply to any frame,
a3c87d4e 221 whether or not it can support scroll bars, and whether or not it is
371fbaeb 222 currently displaying them. */
dfcf069d 223void (*judge_scroll_bars_hook) P_ ((FRAME_PTR FRAME));
20a558dc 224
a168702a
GM
225/* Hook to call in estimate_mode_line_height, if any. */
226
227int (* estimate_mode_line_height_hook) P_ ((struct frame *f, enum face_id));
228
20a558dc 229
08a24c47
JB
230/* Strings, numbers and flags taken from the termcap entry. */
231
a4decb7f 232char *TS_ins_line; /* "al" */
08a24c47
JB
233char *TS_ins_multi_lines; /* "AL" (one parameter, # lines to insert) */
234char *TS_bell; /* "bl" */
235char *TS_clr_to_bottom; /* "cd" */
236char *TS_clr_line; /* "ce", clear to end of line */
ff11dfa1 237char *TS_clr_frame; /* "cl" */
08a24c47
JB
238char *TS_set_scroll_region; /* "cs" (2 params, first line and last line) */
239char *TS_set_scroll_region_1; /* "cS" (4 params: total lines,
240 lines above scroll region, lines below it,
241 total lines again) */
242char *TS_del_char; /* "dc" */
243char *TS_del_multi_chars; /* "DC" (one parameter, # chars to delete) */
244char *TS_del_line; /* "dl" */
245char *TS_del_multi_lines; /* "DL" (one parameter, # lines to delete) */
246char *TS_delete_mode; /* "dm", enter character-delete mode */
247char *TS_end_delete_mode; /* "ed", leave character-delete mode */
248char *TS_end_insert_mode; /* "ei", leave character-insert mode */
249char *TS_ins_char; /* "ic" */
250char *TS_ins_multi_chars; /* "IC" (one parameter, # chars to insert) */
251char *TS_insert_mode; /* "im", enter character-insert mode */
252char *TS_pad_inserted_char; /* "ip". Just padding, no commands. */
253char *TS_end_keypad_mode; /* "ke" */
254char *TS_keypad_mode; /* "ks" */
255char *TS_pad_char; /* "pc", char to use as padding */
256char *TS_repeat; /* "rp" (2 params, # times to repeat
257 and character to be repeated) */
258char *TS_end_standout_mode; /* "se" */
259char *TS_fwd_scroll; /* "sf" */
260char *TS_standout_mode; /* "so" */
261char *TS_rev_scroll; /* "sr" */
262char *TS_end_termcap_modes; /* "te" */
263char *TS_termcap_modes; /* "ti" */
264char *TS_visible_bell; /* "vb" */
a168702a
GM
265char *TS_cursor_normal; /* "ve" */
266char *TS_cursor_visible; /* "vs" */
267char *TS_cursor_invisible; /* "vi" */
08a24c47
JB
268char *TS_set_window; /* "wi" (4 params, start and end of window,
269 each as vpos and hpos) */
270
a168702a
GM
271/* "md" -- turn on bold (extra bright mode). */
272
273char *TS_enter_bold_mode;
274
275/* "mh" -- turn on half-bright mode. */
276
277char *TS_enter_dim_mode;
278
279/* "mb" -- enter blinking mode. */
280
281char *TS_enter_blink_mode;
282
283/* "mr" -- enter reverse video mode. */
284
285char *TS_enter_reverse_mode;
286
287/* "us"/"ue" -- start/end underlining. */
288
289char *TS_exit_underline_mode, *TS_enter_underline_mode;
290
291/* "ug" -- number of blanks left by underline. */
292
293int TN_magic_cookie_glitch_ul;
294
295/* "as"/"ae" -- start/end alternate character set. Not really
296 supported, yet. */
297
298char *TS_enter_alt_charset_mode, *TS_exit_alt_charset_mode;
299
300/* "me" -- switch appearances off. */
301
302char *TS_exit_attribute_mode;
303
304/* "Co" -- number of colors. */
305
306int TN_max_colors;
307
308/* "pa" -- max. number of color pairs on screen. Not handled yet.
309 Could be a problem if not equal to TN_max_colors * TN_max_colors. */
310
311int TN_max_pairs;
312
313/* "op" -- SVr4 set default pair to its original value. */
314
315char *TS_orig_pair;
316
317/* "AF"/"AB" or "Sf"/"Sb"-- set ANSI or SVr4 foreground/background color.
318 1 param, the color index. */
319
320char *TS_set_foreground, *TS_set_background;
321
08a24c47
JB
322int TF_hazeltine; /* termcap hz flag. */
323int TF_insmode_motion; /* termcap mi flag: can move while in insert mode. */
324int TF_standout_motion; /* termcap mi flag: can move while in standout mode. */
a168702a
GM
325int TF_underscore; /* termcap ul flag: _ underlines if over-struck on
326 non-blank position. Must clear before writing _. */
08a24c47
JB
327int TF_teleray; /* termcap xt flag: many weird consequences.
328 For t1061. */
329
330int TF_xs; /* Nonzero for "xs". If set together with
331 TN_standout_width == 0, it means don't bother
332 to write any end-standout cookies. */
333
334int TN_standout_width; /* termcap sg number: width occupied by standout
335 markers */
336
337static int RPov; /* # chars to start a TS_repeat */
338
339static int delete_in_insert_mode; /* delete mode == insert mode */
340
341static int se_is_so; /* 1 if same string both enters and leaves
342 standout mode */
343
344/* internal state */
345
8dd0c7cb 346/* The largest frame width in any call to calculate_costs. */
a168702a 347
8dd0c7cb 348int max_frame_width;
a168702a 349
8dd0c7cb 350/* The largest frame height in any call to calculate_costs. */
a168702a 351
8dd0c7cb
RS
352int max_frame_height;
353
08a24c47
JB
354/* Number of chars of space used for standout marker at beginning of line,
355 or'd with 0100. Zero if no standout marker at all.
8dd0c7cb 356 The length of these vectors is max_frame_height.
08a24c47
JB
357
358 Used IFF TN_standout_width >= 0. */
359
360static char *chars_wasted;
361static char *copybuf;
362
363/* nonzero means supposed to write text in standout mode. */
a168702a 364
08a24c47
JB
365int standout_requested;
366
367int insert_mode; /* Nonzero when in insert mode. */
368int standout_mode; /* Nonzero when in standout mode. */
369
370/* Size of window specified by higher levels.
ff11dfa1 371 This is the number of lines, from the top of frame downwards,
08a24c47
JB
372 which can participate in insert-line/delete-line operations.
373
ff11dfa1 374 Effectively it excludes the bottom frame_height - specified_window_size
08a24c47
JB
375 lines from those operations. */
376
377int specified_window;
378
ff11dfa1 379/* Frame currently being redisplayed; 0 if not currently redisplaying.
08a24c47
JB
380 (Direct output does not count). */
381
ff11dfa1 382FRAME_PTR updating_frame;
08a24c47 383
07c57952 384/* Provided for lisp packages. */
a168702a 385
07c57952
KH
386static int system_uses_terminfo;
387
08a24c47 388char *tparam ();
e4bfb3b6
RS
389
390extern char *tgetstr ();
08a24c47 391\f
cb28b9c2
RS
392
393#ifdef WINDOWSNT
a168702a 394
cb28b9c2
RS
395/* We aren't X windows, but we aren't termcap either. This makes me
396 uncertain as to what value to use for frame.output_method. For
397 this file, we'll define FRAME_TERMCAP_P to be zero so that our
398 output hooks get called instead of the termcap functions. Probably
399 the best long-term solution is to define an output_windows_nt... */
400
401#undef FRAME_TERMCAP_P
402#define FRAME_TERMCAP_P(_f_) 0
403#endif /* WINDOWSNT */
404
dfcf069d 405void
08a24c47
JB
406ring_bell ()
407{
c291d9ef
RS
408 if (! NILP (Vring_bell_function))
409 {
410 Lisp_Object function;
411
412 /* Temporarily set the global variable to nil
413 so that if we get an error, it stays nil
414 and we don't call it over and over.
415
416 We don't specbind it, because that would carefully
417 restore the bad value if there's an error
418 and make the loop of errors happen anyway. */
419 function = Vring_bell_function;
420 Vring_bell_function = Qnil;
421
422 call0 (function);
423
424 Vring_bell_function = function;
425 return;
426 }
427
e52f4e08 428 if (! FRAME_TERMCAP_P (XFRAME (selected_frame)))
08a24c47
JB
429 {
430 (*ring_bell_hook) ();
431 return;
432 }
433 OUTPUT (TS_visible_bell && visible_bell ? TS_visible_bell : TS_bell);
434}
435
dfcf069d 436void
08a24c47
JB
437set_terminal_modes ()
438{
e52f4e08 439 if (! FRAME_TERMCAP_P (XFRAME (selected_frame)))
08a24c47
JB
440 {
441 (*set_terminal_modes_hook) ();
442 return;
443 }
444 OUTPUT_IF (TS_termcap_modes);
a168702a 445 OUTPUT_IF (TS_cursor_visible);
08a24c47
JB
446 OUTPUT_IF (TS_keypad_mode);
447 losecursor ();
448}
449
dfcf069d 450void
08a24c47
JB
451reset_terminal_modes ()
452{
e52f4e08 453 if (! FRAME_TERMCAP_P (XFRAME (selected_frame)))
08a24c47 454 {
b3e1cb05
GV
455 if (reset_terminal_modes_hook)
456 (*reset_terminal_modes_hook) ();
08a24c47
JB
457 return;
458 }
459 if (TN_standout_width < 0)
460 turn_off_highlight ();
461 turn_off_insert ();
462 OUTPUT_IF (TS_end_keypad_mode);
a168702a 463 OUTPUT_IF (TS_cursor_normal);
08a24c47 464 OUTPUT_IF (TS_end_termcap_modes);
a168702a 465 OUTPUT_IF (TS_orig_pair);
08a24c47
JB
466 /* Output raw CR so kernel can track the cursor hpos. */
467 /* But on magic-cookie terminals this can erase an end-standout marker and
ff11dfa1 468 cause the rest of the frame to be in standout, so move down first. */
08a24c47
JB
469 if (TN_standout_width >= 0)
470 cmputc ('\n');
471 cmputc ('\r');
472}
473
dfcf069d 474void
ff11dfa1
JB
475update_begin (f)
476 FRAME_PTR f;
08a24c47 477{
ff11dfa1 478 updating_frame = f;
1820044b 479 if (! FRAME_TERMCAP_P (updating_frame))
ff11dfa1 480 (*update_begin_hook) (f);
a168702a
GM
481 else
482 tty_hide_cursor ();
08a24c47
JB
483}
484
dfcf069d 485void
ff11dfa1
JB
486update_end (f)
487 FRAME_PTR f;
08a24c47 488{
1820044b 489 if (! FRAME_TERMCAP_P (updating_frame))
08a24c47 490 {
7a8e3e30 491 (*update_end_hook) (f);
cc4ee3c7 492 updating_frame = 0;
08a24c47
JB
493 return;
494 }
a168702a
GM
495
496 if (!XWINDOW (selected_window)->cursor_off_p)
497 tty_show_cursor ();
498
08a24c47
JB
499 turn_off_insert ();
500 background_highlight ();
501 standout_requested = 0;
ff11dfa1 502 updating_frame = 0;
08a24c47
JB
503}
504
dfcf069d 505void
08a24c47
JB
506set_terminal_window (size)
507 int size;
508{
1820044b 509 if (! FRAME_TERMCAP_P (updating_frame))
08a24c47
JB
510 {
511 (*set_terminal_window_hook) (size);
512 return;
513 }
e52f4e08 514 specified_window = size ? size : FRAME_HEIGHT (XFRAME (selected_frame));
08a24c47
JB
515 if (!scroll_region_ok)
516 return;
517 set_scroll_region (0, specified_window);
518}
519
dfcf069d 520void
08a24c47
JB
521set_scroll_region (start, stop)
522 int start, stop;
523{
524 char *buf;
e52f4e08
GM
525 struct frame *sf = XFRAME (selected_frame);
526
08a24c47
JB
527 if (TS_set_scroll_region)
528 {
529 buf = tparam (TS_set_scroll_region, 0, 0, start, stop - 1);
530 }
531 else if (TS_set_scroll_region_1)
532 {
533 buf = tparam (TS_set_scroll_region_1, 0, 0,
e52f4e08
GM
534 FRAME_HEIGHT (sf), start,
535 FRAME_HEIGHT (sf) - stop,
536 FRAME_HEIGHT (sf));
08a24c47
JB
537 }
538 else
539 {
e52f4e08 540 buf = tparam (TS_set_window, 0, 0, start, 0, stop, FRAME_WIDTH (sf));
08a24c47
JB
541 }
542 OUTPUT (buf);
9ac0d9e0 543 xfree (buf);
08a24c47
JB
544 losecursor ();
545}
546\f
dfcf069d 547void
08a24c47
JB
548turn_on_insert ()
549{
550 if (!insert_mode)
551 OUTPUT (TS_insert_mode);
552 insert_mode = 1;
553}
554
dfcf069d 555void
08a24c47
JB
556turn_off_insert ()
557{
558 if (insert_mode)
559 OUTPUT (TS_end_insert_mode);
560 insert_mode = 0;
561}
562\f
563/* Handle highlighting when TN_standout_width (termcap sg) is not specified.
564 In these terminals, output is affected by the value of standout
565 mode when the output is written.
566
567 These functions are called on all terminals, but do nothing
568 on terminals whose standout mode does not work that way. */
569
dfcf069d 570void
08a24c47
JB
571turn_off_highlight ()
572{
573 if (TN_standout_width < 0)
574 {
575 if (standout_mode)
576 OUTPUT_IF (TS_end_standout_mode);
577 standout_mode = 0;
578 }
579}
580
dfcf069d 581void
08a24c47
JB
582turn_on_highlight ()
583{
584 if (TN_standout_width < 0)
585 {
586 if (!standout_mode)
587 OUTPUT_IF (TS_standout_mode);
588 standout_mode = 1;
589 }
590}
591
a168702a
GM
592
593/* Make cursor invisible. */
594
595static void
596tty_hide_cursor ()
597{
598 OUTPUT_IF (TS_cursor_invisible);
599}
600
601
602/* Ensure that cursor is visible. */
603
604static void
605tty_show_cursor ()
606{
607 OUTPUT_IF (TS_cursor_normal);
608 OUTPUT_IF (TS_cursor_visible);
609}
610
611
08a24c47
JB
612/* Set standout mode to the state it should be in for
613 empty space inside windows. What this is,
614 depends on the user option inverse-video. */
615
dfcf069d 616void
08a24c47
JB
617background_highlight ()
618{
619 if (TN_standout_width >= 0)
620 return;
621 if (inverse_video)
622 turn_on_highlight ();
623 else
624 turn_off_highlight ();
625}
626
627/* Set standout mode to the mode specified for the text to be output. */
628
dfcf069d 629static void
08a24c47
JB
630highlight_if_desired ()
631{
632 if (TN_standout_width >= 0)
633 return;
634 if (!inverse_video == !standout_requested)
635 turn_off_highlight ();
636 else
637 turn_on_highlight ();
638}
639\f
640/* Handle standout mode for terminals in which TN_standout_width >= 0.
641 On these terminals, standout is controlled by markers that
ff11dfa1 642 live inside the terminal's memory. TN_standout_width is the width
08a24c47
JB
643 that the marker occupies in memory. Standout runs from the marker
644 to the end of the line on some terminals, or to the next
645 turn-off-standout marker (TS_end_standout_mode) string
646 on other terminals. */
647
648/* Write a standout marker or end-standout marker at the front of the line
649 at vertical position vpos. */
650
dfcf069d 651void
08a24c47
JB
652write_standout_marker (flag, vpos)
653 int flag, vpos;
654{
655 if (flag || (TS_end_standout_mode && !TF_teleray && !se_is_so
656 && !(TF_xs && TN_standout_width == 0)))
657 {
658 cmgoto (vpos, 0);
659 cmplus (TN_standout_width);
660 OUTPUT (flag ? TS_standout_mode : TS_end_standout_mode);
661 chars_wasted[curY] = TN_standout_width | 0100;
662 }
663}
664\f
665/* External interface to control of standout mode.
666 Call this when about to modify line at position VPOS
667 and not change whether it is highlighted. */
668
dfcf069d 669void
08a24c47
JB
670reassert_line_highlight (highlight, vpos)
671 int highlight;
672 int vpos;
673{
e52f4e08
GM
674 struct frame *f = updating_frame ? updating_frame : XFRAME (selected_frame);
675 if (! FRAME_TERMCAP_P (f))
08a24c47
JB
676 {
677 (*reassert_line_highlight_hook) (highlight, vpos);
678 return;
679 }
680 if (TN_standout_width < 0)
681 /* Handle terminals where standout takes affect at output time */
682 standout_requested = highlight;
a168702a 683 else if (chars_wasted && chars_wasted[vpos] == 0)
08a24c47
JB
684 /* For terminals with standout markers, write one on this line
685 if there isn't one already. */
686 write_standout_marker (highlight, vpos);
687}
688
689/* Call this when about to modify line at position VPOS
690 and change whether it is highlighted. */
691
dfcf069d 692void
a168702a
GM
693change_line_highlight (new_highlight, vpos, y, first_unused_hpos)
694 int new_highlight, vpos, y, first_unused_hpos;
08a24c47
JB
695{
696 standout_requested = new_highlight;
1820044b 697 if (! FRAME_TERMCAP_P (updating_frame))
08a24c47 698 {
a168702a 699 (*change_line_highlight_hook) (new_highlight, vpos, y, first_unused_hpos);
08a24c47
JB
700 return;
701 }
702
703 cursor_to (vpos, 0);
704
705 if (TN_standout_width < 0)
706 background_highlight ();
707 /* If line starts with a marker, delete the marker */
708 else if (TS_clr_line && chars_wasted[curY])
709 {
710 turn_off_insert ();
711 /* On Teleray, make sure to erase the SO marker. */
712 if (TF_teleray)
713 {
e52f4e08 714 cmgoto (curY - 1, FRAME_WIDTH (XFRAME (selected_frame)) - 4);
08a24c47
JB
715 OUTPUT ("\033S");
716 curY++; /* ESC S moves to next line where the TS_standout_mode was */
717 curX = 0;
718 }
719 else
720 cmgoto (curY, 0); /* reposition to kill standout marker */
721 }
722 clear_end_of_line_raw (first_unused_hpos);
723 reassert_line_highlight (new_highlight, curY);
724}
725\f
726
a168702a
GM
727/* Move cursor to row/column position VPOS/HPOS. HPOS/VPOS are
728 frame-relative coordinates. */
08a24c47 729
dfcf069d 730void
a168702a
GM
731cursor_to (vpos, hpos)
732 int vpos, hpos;
08a24c47 733{
e52f4e08
GM
734 struct frame *f = updating_frame ? updating_frame : XFRAME (selected_frame);
735
736 if (! FRAME_TERMCAP_P (f) && cursor_to_hook)
08a24c47 737 {
a168702a 738 (*cursor_to_hook) (vpos, hpos);
08a24c47
JB
739 return;
740 }
741
36cae867
KH
742 /* Detect the case where we are called from reset_sys_modes
743 and the costs have never been calculated. Do nothing. */
744 if (chars_wasted == 0)
745 return;
746
a168702a
GM
747 hpos += chars_wasted[vpos] & 077;
748 if (curY == vpos && curX == hpos)
08a24c47
JB
749 return;
750 if (!TF_standout_motion)
751 background_highlight ();
752 if (!TF_insmode_motion)
753 turn_off_insert ();
a168702a 754 cmgoto (vpos, hpos);
08a24c47
JB
755}
756
757/* Similar but don't take any account of the wasted characters. */
758
dfcf069d 759void
08a24c47 760raw_cursor_to (row, col)
4746118a 761 int row, col;
08a24c47 762{
e52f4e08
GM
763 struct frame *f = updating_frame ? updating_frame : XFRAME (selected_frame);
764 if (! FRAME_TERMCAP_P (f))
08a24c47
JB
765 {
766 (*raw_cursor_to_hook) (row, col);
767 return;
768 }
769 if (curY == row && curX == col)
770 return;
771 if (!TF_standout_motion)
772 background_highlight ();
773 if (!TF_insmode_motion)
774 turn_off_insert ();
775 cmgoto (row, col);
776}
777\f
778/* Erase operations */
779
ff11dfa1 780/* clear from cursor to end of frame */
dfcf069d 781void
08a24c47
JB
782clear_to_end ()
783{
784 register int i;
785
759d9005 786 if (clear_to_end_hook && ! FRAME_TERMCAP_P (updating_frame))
08a24c47
JB
787 {
788 (*clear_to_end_hook) ();
789 return;
790 }
791 if (TS_clr_to_bottom)
792 {
793 background_highlight ();
794 OUTPUT (TS_clr_to_bottom);
e52f4e08
GM
795 bzero (chars_wasted + curY,
796 FRAME_HEIGHT (XFRAME (selected_frame)) - curY);
08a24c47
JB
797 }
798 else
799 {
e52f4e08 800 for (i = curY; i < FRAME_HEIGHT (XFRAME (selected_frame)); i++)
08a24c47
JB
801 {
802 cursor_to (i, 0);
e52f4e08 803 clear_end_of_line_raw (FRAME_WIDTH (XFRAME (selected_frame)));
08a24c47
JB
804 }
805 }
806}
807
ff11dfa1 808/* Clear entire frame */
08a24c47 809
dfcf069d 810void
ff11dfa1 811clear_frame ()
08a24c47 812{
e52f4e08
GM
813 struct frame *sf = XFRAME (selected_frame);
814
ff11dfa1 815 if (clear_frame_hook
e52f4e08 816 && ! FRAME_TERMCAP_P ((updating_frame ? updating_frame : sf)))
08a24c47 817 {
ff11dfa1 818 (*clear_frame_hook) ();
08a24c47
JB
819 return;
820 }
ff11dfa1 821 if (TS_clr_frame)
08a24c47
JB
822 {
823 background_highlight ();
ff11dfa1 824 OUTPUT (TS_clr_frame);
e52f4e08 825 bzero (chars_wasted, FRAME_HEIGHT (sf));
08a24c47
JB
826 cmat (0, 0);
827 }
828 else
829 {
830 cursor_to (0, 0);
831 clear_to_end ();
832 }
833}
834
835/* Clear to end of line, but do not clear any standout marker.
836 Assumes that the cursor is positioned at a character of real text,
837 which implies it cannot be before a standout marker
838 unless the marker has zero width.
839
840 Note that the cursor may be moved. */
841
dfcf069d 842void
08a24c47
JB
843clear_end_of_line (first_unused_hpos)
844 int first_unused_hpos;
845{
e52f4e08 846 if (FRAME_TERMCAP_P (XFRAME (selected_frame))
36cae867 847 && chars_wasted != 0
08a24c47 848 && TN_standout_width == 0 && curX == 0 && chars_wasted[curY] != 0)
a168702a 849 write_glyphs (&space_glyph, 1);
08a24c47
JB
850 clear_end_of_line_raw (first_unused_hpos);
851}
852
853/* Clear from cursor to end of line.
854 Assume that the line is already clear starting at column first_unused_hpos.
855 If the cursor is at a standout marker, erase the marker.
856
857 Note that the cursor may be moved, on terminals lacking a `ce' string. */
858
dfcf069d 859void
08a24c47
JB
860clear_end_of_line_raw (first_unused_hpos)
861 int first_unused_hpos;
862{
863 register int i;
864
865 if (clear_end_of_line_hook
1820044b 866 && ! FRAME_TERMCAP_P ((updating_frame
ff11dfa1 867 ? updating_frame
e52f4e08 868 : XFRAME (selected_frame))))
08a24c47
JB
869 {
870 (*clear_end_of_line_hook) (first_unused_hpos);
871 return;
872 }
873
36cae867
KH
874 /* Detect the case where we are called from reset_sys_modes
875 and the costs have never been calculated. Do nothing. */
876 if (chars_wasted == 0)
877 return;
878
08a24c47
JB
879 first_unused_hpos += chars_wasted[curY] & 077;
880 if (curX >= first_unused_hpos)
881 return;
882 /* Notice if we are erasing a magic cookie */
883 if (curX == 0)
884 chars_wasted[curY] = 0;
885 background_highlight ();
886 if (TS_clr_line)
887 {
888 OUTPUT1 (TS_clr_line);
889 }
890 else
891 { /* have to do it the hard way */
e52f4e08 892 struct frame *sf = XFRAME (selected_frame);
08a24c47
JB
893 turn_off_insert ();
894
a168702a 895 /* Do not write in last row last col with Auto-wrap on. */
e52f4e08
GM
896 if (AutoWrap && curY == FRAME_HEIGHT (sf) - 1
897 && first_unused_hpos == FRAME_WIDTH (sf))
08a24c47
JB
898 first_unused_hpos--;
899
900 for (i = curX; i < first_unused_hpos; i++)
901 {
902 if (termscript)
903 fputc (' ', termscript);
904 putchar (' ');
905 }
906 cmplus (first_unused_hpos - curX);
907 }
908}
909\f
a4decb7f
KH
910/* Encode SRC_LEN glyphs starting at SRC to terminal output codes and
911 store them at DST. Do not write more than DST_LEN bytes. That may
912 require stopping before all SRC_LEN input glyphs have been
913 converted.
914
915 We store the number of glyphs actually converted in *CONSUMED. The
916 return value is the number of bytes store in DST. */
917
918int
919encode_terminal_code (src, dst, src_len, dst_len, consumed)
a168702a 920 struct glyph *src;
a4decb7f
KH
921 int src_len;
922 unsigned char *dst;
923 int dst_len, *consumed;
924{
a168702a 925 struct glyph *src_start = src, *src_end = src + src_len;
a4decb7f 926 unsigned char *dst_start = dst, *dst_end = dst + dst_len;
085d5908
KH
927 register GLYPH g;
928 unsigned int c;
a4decb7f 929 unsigned char workbuf[4], *buf;
6589fd67 930 int len;
a4decb7f
KH
931 register int tlen = GLYPH_TABLE_LENGTH;
932 register Lisp_Object *tbase = GLYPH_TABLE_BASE;
f3ac545f 933 int result;
6589fd67
KH
934 struct coding_system *coding;
935
936 coding = (CODING_REQUIRE_ENCODING (&terminal_coding)
937 ? &terminal_coding
938 : &safe_terminal_coding);
a4decb7f
KH
939
940 while (src < src_end)
941 {
a168702a
GM
942 g = GLYPH_FROM_CHAR_GLYPH (*src);
943
a4decb7f 944 /* We must skip glyphs to be padded for a wide character. */
a168702a 945 if (! CHAR_GLYPH_PADDING_P (*src))
a4decb7f 946 {
a168702a
GM
947 c = src->u.ch.code;
948 if (! GLYPH_CHAR_VALID_P (c))
085d5908
KH
949 {
950 c = ' ';
e52f4e08 951 g = MAKE_GLYPH (sf, c, GLYPH_FACE (sf, g));
085d5908 952 }
a4decb7f
KH
953 if (COMPOSITE_CHAR_P (c))
954 {
955 /* If C is a composite character, we can display
956 only the first component. */
957 g = cmpchar_table[COMPOSITE_CHAR_ID (c)]->glyph[0],
e52f4e08 958 c = GLYPH_CHAR (sf, g);
a4decb7f
KH
959 }
960 if (c < tlen)
961 {
962 /* G has an entry in Vglyph_table,
963 so process any alias before testing for simpleness. */
964 GLYPH_FOLLOW_ALIASES (tbase, tlen, g);
e52f4e08 965 c = GLYPH_CHAR (sf, g);
a4decb7f
KH
966 }
967 if (GLYPH_SIMPLE_P (tbase, tlen, g))
968 /* We set the multi-byte form of C at BUF. */
969 len = CHAR_STRING (c, workbuf, buf);
970 else
171d7f24
RS
971 {
972 /* We have a string in Vglyph_table. */
973 len = GLYPH_LENGTH (tbase, g);
974 buf = GLYPH_STRING (tbase, g);
975 }
a4decb7f 976
f3ac545f 977 result = encode_coding (coding, buf, dst, len, dst_end - dst);
c42869c4 978 len -= coding->consumed;
6589fd67 979 dst += coding->produced;
f3ac545f
KH
980 if (result == CODING_FINISH_INSUFFICIENT_DST
981 || (result == CODING_FINISH_INSUFFICIENT_SRC
982 && len > dst_end - dst))
983 /* The remaining output buffer is too short. We must
984 break the loop here without increasing SRC so that the
985 next call of this function starts from the same glyph. */
986 break;
987
c42869c4
KH
988 if (len > 0)
989 {
f3ac545f
KH
990 /* This is the case that a code of the range 0200..0237
991 exists in buf. We must just write out such a code. */
992 buf += coding->consumed;
993 while (len--)
994 *dst++ = *buf++;
c42869c4 995 }
a4decb7f
KH
996 }
997 src++;
998 }
a168702a 999
a4decb7f
KH
1000 *consumed = src - src_start;
1001 return (dst - dst_start);
1002}
1003
08a24c47 1004
dfcf069d 1005void
08a24c47 1006write_glyphs (string, len)
a168702a 1007 register struct glyph *string;
08a24c47
JB
1008 register int len;
1009{
a4decb7f 1010 int produced, consumed;
e52f4e08
GM
1011 struct frame *sf = XFRAME (selected_frame);
1012 struct frame *f = updating_frame ? updating_frame : sf;
08a24c47
JB
1013
1014 if (write_glyphs_hook
a168702a 1015 && ! FRAME_TERMCAP_P (f))
08a24c47
JB
1016 {
1017 (*write_glyphs_hook) (string, len);
1018 return;
1019 }
1020
1021 highlight_if_desired ();
1022 turn_off_insert ();
1023
a168702a 1024 /* Don't dare write in last column of bottom line, if Auto-Wrap,
ff11dfa1 1025 since that would scroll the whole frame on some terminals. */
08a24c47
JB
1026
1027 if (AutoWrap
e52f4e08
GM
1028 && curY + 1 == FRAME_HEIGHT (sf)
1029 && (curX + len - (chars_wasted[curY] & 077) == FRAME_WIDTH (sf)))
08a24c47 1030 len --;
a4decb7f
KH
1031 if (len <= 0)
1032 return;
08a24c47
JB
1033
1034 cmplus (len);
a168702a 1035
6589fd67
KH
1036 /* The mode bit CODING_MODE_LAST_BLOCK should be set to 1 only at
1037 the tail. */
1038 terminal_coding.mode &= ~CODING_MODE_LAST_BLOCK;
a168702a 1039
a4decb7f 1040 while (len > 0)
08a24c47 1041 {
a168702a
GM
1042 /* Identify a run of glyphs with the same face. */
1043 int face_id = string->u.ch.face_id;
1044 int n;
1045
1046 for (n = 1; n < len; ++n)
1047 if (string[n].u.ch.face_id != face_id)
1048 break;
1049
1050 /* Turn appearance modes of the face of the run on. */
1051 turn_on_face (f, face_id);
1052
1053 while (n > 0)
08a24c47 1054 {
a168702a
GM
1055 /* We use a shared conversion buffer of the current size
1056 (1024 bytes at least). Usually it is sufficient, but if
1057 not, we just repeat the loop. */
1058 produced = encode_terminal_code (string, conversion_buffer,
1059 n, conversion_buffer_size,
1060 &consumed);
1061 if (produced > 0)
1062 {
1063 fwrite (conversion_buffer, 1, produced, stdout);
1064 if (ferror (stdout))
1065 clearerr (stdout);
1066 if (termscript)
1067 fwrite (conversion_buffer, 1, produced, termscript);
1068 }
1069 len -= consumed;
1070 n -= consumed;
1071 string += consumed;
08a24c47 1072 }
a168702a
GM
1073
1074 /* Turn appearance modes off. */
1075 turn_off_face (f, face_id);
a4decb7f 1076 }
a168702a 1077
a4decb7f 1078 /* We may have to output some codes to terminate the writing. */
ca1e6a13 1079 if (CODING_REQUIRE_FLUSHING (&terminal_coding))
a4decb7f 1080 {
6589fd67 1081 terminal_coding.mode |= CODING_MODE_LAST_BLOCK;
1814bd62 1082 encode_coding (&terminal_coding, "", conversion_buffer,
6589fd67
KH
1083 0, conversion_buffer_size);
1084 if (terminal_coding.produced > 0)
df8bf431 1085 {
6589fd67 1086 fwrite (conversion_buffer, 1, terminal_coding.produced, stdout);
df8bf431
KH
1087 if (ferror (stdout))
1088 clearerr (stdout);
1089 if (termscript)
6589fd67
KH
1090 fwrite (conversion_buffer, 1, terminal_coding.produced,
1091 termscript);
df8bf431 1092 }
08a24c47 1093 }
a168702a 1094
9a6b6f92 1095 cmcheckmagic ();
08a24c47
JB
1096}
1097
1098/* If start is zero, insert blanks instead of a string at start */
1099
dfcf069d 1100void
08a24c47 1101insert_glyphs (start, len)
a168702a 1102 register struct glyph *start;
08a24c47
JB
1103 register int len;
1104{
1105 char *buf;
a4decb7f 1106 GLYPH g;
e52f4e08 1107 struct frame *f, *sf;
08a24c47 1108
a4decb7f
KH
1109 if (len <= 0)
1110 return;
1111
a168702a 1112 if (insert_glyphs_hook)
08a24c47
JB
1113 {
1114 (*insert_glyphs_hook) (start, len);
1115 return;
1116 }
a168702a 1117
e52f4e08
GM
1118 sf = XFRAME (selected_frame);
1119 f = updating_frame ? updating_frame : sf;
08a24c47
JB
1120 highlight_if_desired ();
1121
1122 if (TS_ins_multi_chars)
1123 {
1124 buf = tparam (TS_ins_multi_chars, 0, 0, len);
1125 OUTPUT1 (buf);
9ac0d9e0 1126 xfree (buf);
08a24c47
JB
1127 if (start)
1128 write_glyphs (start, len);
1129 return;
1130 }
1131
1132 turn_on_insert ();
1133 cmplus (len);
6589fd67
KH
1134 /* The bit CODING_MODE_LAST_BLOCK should be set to 1 only at the tail. */
1135 terminal_coding.mode &= ~CODING_MODE_LAST_BLOCK;
07109bf9 1136 while (len-- > 0)
08a24c47 1137 {
a4decb7f 1138 int produced, consumed;
a168702a 1139 struct glyph glyph;
a4decb7f 1140
08a24c47
JB
1141 OUTPUT1_IF (TS_ins_char);
1142 if (!start)
1143 g = SPACEGLYPH;
1144 else
08a24c47 1145 {
a168702a
GM
1146 g = GLYPH_FROM_CHAR_GLYPH (*start);
1147 ++start;
a4decb7f
KH
1148 /* We must open sufficient space for a character which
1149 occupies more than one column. */
a168702a 1150 while (len && CHAR_GLYPH_PADDING_P (*start))
a4decb7f
KH
1151 {
1152 OUTPUT1_IF (TS_ins_char);
1153 start++, len--;
1154 }
08a24c47 1155 }
a4decb7f
KH
1156
1157 if (len <= 0)
1158 /* This is the last glyph. */
6589fd67 1159 terminal_coding.mode |= CODING_MODE_LAST_BLOCK;
a4decb7f
KH
1160
1161 /* We use shared conversion buffer of the current size (1024
1162 bytes at least). It is surely sufficient for just one glyph. */
a168702a
GM
1163 SET_CHAR_GLYPH_FROM_GLYPH (glyph, g);
1164 turn_on_face (f, glyph.u.ch.face_id);
1165 produced = encode_terminal_code (&glyph, conversion_buffer,
a4decb7f
KH
1166 1, conversion_buffer_size, &consumed);
1167 if (produced > 0)
08a24c47 1168 {
a4decb7f 1169 fwrite (conversion_buffer, 1, produced, stdout);
08a24c47
JB
1170 if (ferror (stdout))
1171 clearerr (stdout);
1172 if (termscript)
a4decb7f 1173 fwrite (conversion_buffer, 1, produced, termscript);
08a24c47
JB
1174 }
1175
9a6b6f92 1176 OUTPUT1_IF (TS_pad_inserted_char);
a168702a 1177 turn_off_face (f, glyph.u.ch.face_id);
9a6b6f92 1178 }
a168702a 1179
9a6b6f92 1180 cmcheckmagic ();
08a24c47
JB
1181}
1182
dfcf069d 1183void
08a24c47
JB
1184delete_glyphs (n)
1185 register int n;
1186{
1187 char *buf;
1188 register int i;
1189
1820044b 1190 if (delete_glyphs_hook && ! FRAME_TERMCAP_P (updating_frame))
08a24c47
JB
1191 {
1192 (*delete_glyphs_hook) (n);
1193 return;
1194 }
1195
1196 if (delete_in_insert_mode)
1197 {
1198 turn_on_insert ();
1199 }
1200 else
1201 {
1202 turn_off_insert ();
1203 OUTPUT_IF (TS_delete_mode);
1204 }
1205
1206 if (TS_del_multi_chars)
1207 {
1208 buf = tparam (TS_del_multi_chars, 0, 0, n);
1209 OUTPUT1 (buf);
9ac0d9e0 1210 xfree (buf);
08a24c47
JB
1211 }
1212 else
1213 for (i = 0; i < n; i++)
1214 OUTPUT1 (TS_del_char);
1215 if (!delete_in_insert_mode)
1216 OUTPUT_IF (TS_end_delete_mode);
1217}
1218\f
1219/* Insert N lines at vpos VPOS. If N is negative, delete -N lines. */
1220
dfcf069d 1221void
08a24c47
JB
1222ins_del_lines (vpos, n)
1223 int vpos, n;
1224{
1225 char *multi = n > 0 ? TS_ins_multi_lines : TS_del_multi_lines;
1226 char *single = n > 0 ? TS_ins_line : TS_del_line;
1227 char *scroll = n > 0 ? TS_rev_scroll : TS_fwd_scroll;
e52f4e08 1228 struct frame *sf;
08a24c47
JB
1229
1230 register int i = n > 0 ? n : -n;
1231 register char *buf;
1232
1820044b 1233 if (ins_del_lines_hook && ! FRAME_TERMCAP_P (updating_frame))
08a24c47
JB
1234 {
1235 (*ins_del_lines_hook) (vpos, n);
1236 return;
1237 }
1238
e52f4e08
GM
1239 sf = XFRAME (selected_frame);
1240
08a24c47
JB
1241 /* If the lines below the insertion are being pushed
1242 into the end of the window, this is the same as clearing;
1243 and we know the lines are already clear, since the matching
1244 deletion has already been done. So can ignore this. */
1245 /* If the lines below the deletion are blank lines coming
1246 out of the end of the window, don't bother,
1247 as there will be a matching inslines later that will flush them. */
1248 if (scroll_region_ok && vpos + i >= specified_window)
1249 return;
e52f4e08 1250 if (!memory_below_frame && vpos + i >= FRAME_HEIGHT (sf))
08a24c47
JB
1251 return;
1252
1253 if (multi)
1254 {
1255 raw_cursor_to (vpos, 0);
1256 background_highlight ();
1257 buf = tparam (multi, 0, 0, i);
1258 OUTPUT (buf);
9ac0d9e0 1259 xfree (buf);
08a24c47
JB
1260 }
1261 else if (single)
1262 {
1263 raw_cursor_to (vpos, 0);
1264 background_highlight ();
1265 while (--i >= 0)
1266 OUTPUT (single);
1267 if (TF_teleray)
1268 curX = 0;
1269 }
1270 else
1271 {
1272 set_scroll_region (vpos, specified_window);
1273 if (n < 0)
1274 raw_cursor_to (specified_window - 1, 0);
1275 else
1276 raw_cursor_to (vpos, 0);
1277 background_highlight ();
1278 while (--i >= 0)
1279 OUTPUTL (scroll, specified_window - vpos);
1280 set_scroll_region (0, specified_window);
1281 }
1282
1283 if (TN_standout_width >= 0)
1284 {
dfcf069d 1285 register int lower_limit
08a24c47
JB
1286 = (scroll_region_ok
1287 ? specified_window
e52f4e08 1288 : FRAME_HEIGHT (sf));
08a24c47
JB
1289
1290 if (n < 0)
1291 {
1292 bcopy (&chars_wasted[vpos - n], &chars_wasted[vpos],
1293 lower_limit - vpos + n);
1294 bzero (&chars_wasted[lower_limit + n], - n);
1295 }
1296 else
1297 {
1298 bcopy (&chars_wasted[vpos], &copybuf[vpos], lower_limit - vpos - n);
1299 bcopy (&copybuf[vpos], &chars_wasted[vpos + n],
1300 lower_limit - vpos - n);
1301 bzero (&chars_wasted[vpos], n);
1302 }
1303 }
ff11dfa1 1304 if (!scroll_region_ok && memory_below_frame && n < 0)
08a24c47 1305 {
e52f4e08 1306 cursor_to (FRAME_HEIGHT (sf) + n, 0);
08a24c47
JB
1307 clear_to_end ();
1308 }
1309}
1310\f
1311/* Compute cost of sending "str", in characters,
1312 not counting any line-dependent padding. */
1313
1314int
1315string_cost (str)
1316 char *str;
1317{
1318 cost = 0;
1319 if (str)
1320 tputs (str, 0, evalcost);
1321 return cost;
1322}
1323
1324/* Compute cost of sending "str", in characters,
1325 counting any line-dependent padding at one line. */
1326
1327static int
1328string_cost_one_line (str)
1329 char *str;
1330{
1331 cost = 0;
1332 if (str)
1333 tputs (str, 1, evalcost);
1334 return cost;
1335}
1336
1337/* Compute per line amount of line-dependent padding,
1338 in tenths of characters. */
1339
1340int
1341per_line_cost (str)
1342 register char *str;
1343{
1344 cost = 0;
1345 if (str)
1346 tputs (str, 0, evalcost);
1347 cost = - cost;
1348 if (str)
1349 tputs (str, 10, evalcost);
1350 return cost;
1351}
1352
1353#ifndef old
1354/* char_ins_del_cost[n] is cost of inserting N characters.
8dd0c7cb
RS
1355 char_ins_del_cost[-n] is cost of deleting N characters.
1356 The length of this vector is based on max_frame_width. */
08a24c47
JB
1357
1358int *char_ins_del_vector;
1359
ff11dfa1 1360#define char_ins_del_cost(f) (&char_ins_del_vector[FRAME_WIDTH ((f))])
08a24c47
JB
1361#endif
1362
1363/* ARGSUSED */
1364static void
ff11dfa1
JB
1365calculate_ins_del_char_costs (frame)
1366 FRAME_PTR frame;
08a24c47
JB
1367{
1368 int ins_startup_cost, del_startup_cost;
1369 int ins_cost_per_char, del_cost_per_char;
1370 register int i;
1371 register int *p;
1372
1373 if (TS_ins_multi_chars)
1374 {
1375 ins_cost_per_char = 0;
1376 ins_startup_cost = string_cost_one_line (TS_ins_multi_chars);
1377 }
1378 else if (TS_ins_char || TS_pad_inserted_char
1379 || (TS_insert_mode && TS_end_insert_mode))
1380 {
1381 ins_startup_cost = (30 * (string_cost (TS_insert_mode)
1382 + string_cost (TS_end_insert_mode))) / 100;
1383 ins_cost_per_char = (string_cost_one_line (TS_ins_char)
1384 + string_cost_one_line (TS_pad_inserted_char));
1385 }
1386 else
1387 {
1388 ins_startup_cost = 9999;
1389 ins_cost_per_char = 0;
1390 }
1391
1392 if (TS_del_multi_chars)
1393 {
1394 del_cost_per_char = 0;
1395 del_startup_cost = string_cost_one_line (TS_del_multi_chars);
1396 }
1397 else if (TS_del_char)
1398 {
1399 del_startup_cost = (string_cost (TS_delete_mode)
1400 + string_cost (TS_end_delete_mode));
1401 if (delete_in_insert_mode)
1402 del_startup_cost /= 2;
1403 del_cost_per_char = string_cost_one_line (TS_del_char);
1404 }
1405 else
1406 {
1407 del_startup_cost = 9999;
1408 del_cost_per_char = 0;
1409 }
1410
1411 /* Delete costs are at negative offsets */
ff11dfa1 1412 p = &char_ins_del_cost (frame)[0];
db71d414 1413 for (i = FRAME_WIDTH (frame); --i >= 0;)
08a24c47
JB
1414 *--p = (del_startup_cost += del_cost_per_char);
1415
1416 /* Doing nothing is free */
ff11dfa1 1417 p = &char_ins_del_cost (frame)[0];
08a24c47
JB
1418 *p++ = 0;
1419
1420 /* Insert costs are at positive offsets */
ff11dfa1 1421 for (i = FRAME_WIDTH (frame); --i >= 0;)
08a24c47
JB
1422 *p++ = (ins_startup_cost += ins_cost_per_char);
1423}
1424
dfcf069d 1425void
ff11dfa1
JB
1426calculate_costs (frame)
1427 FRAME_PTR frame;
08a24c47 1428{
9f732a77
RS
1429 register char *f = (TS_set_scroll_region
1430 ? TS_set_scroll_region
1431 : TS_set_scroll_region_1);
08a24c47 1432
9f732a77 1433 FRAME_COST_BAUD_RATE (frame) = baud_rate;
08a24c47 1434
be7cd44f 1435 scroll_region_cost = string_cost (f);
08a24c47 1436#ifdef HAVE_X_WINDOWS
1820044b 1437 if (FRAME_X_P (frame))
08a24c47 1438 {
ff11dfa1 1439 do_line_insertion_deletion_costs (frame, 0, ".5*", 0, ".5*",
7dac35c8
RS
1440 0, 0,
1441 x_screen_planes (frame));
be7cd44f 1442 scroll_region_cost = 0;
08a24c47
JB
1443 return;
1444 }
1445#endif
1446
1447 /* These variables are only used for terminal stuff. They are allocated
ff11dfa1 1448 once for the terminal frame of X-windows emacs, but not used afterwards.
08a24c47
JB
1449
1450 char_ins_del_vector (i.e., char_ins_del_cost) isn't used because
1451 X turns off char_ins_del_ok.
1452
1453 chars_wasted and copybuf are only used here in term.c in cases where
1454 the term hook isn't called. */
1455
8dd0c7cb
RS
1456 max_frame_height = max (max_frame_height, FRAME_HEIGHT (frame));
1457 max_frame_width = max (max_frame_width, FRAME_WIDTH (frame));
1458
08a24c47 1459 if (chars_wasted != 0)
8dd0c7cb 1460 chars_wasted = (char *) xrealloc (chars_wasted, max_frame_height);
08a24c47 1461 else
8dd0c7cb 1462 chars_wasted = (char *) xmalloc (max_frame_height);
08a24c47
JB
1463
1464 if (copybuf != 0)
8dd0c7cb 1465 copybuf = (char *) xrealloc (copybuf, max_frame_height);
08a24c47 1466 else
8dd0c7cb 1467 copybuf = (char *) xmalloc (max_frame_height);
08a24c47
JB
1468
1469 if (char_ins_del_vector != 0)
1470 char_ins_del_vector
1471 = (int *) xrealloc (char_ins_del_vector,
1472 (sizeof (int)
8dd0c7cb 1473 + 2 * max_frame_width * sizeof (int)));
08a24c47
JB
1474 else
1475 char_ins_del_vector
1476 = (int *) xmalloc (sizeof (int)
8dd0c7cb 1477 + 2 * max_frame_width * sizeof (int));
08a24c47 1478
8dd0c7cb
RS
1479 bzero (chars_wasted, max_frame_height);
1480 bzero (copybuf, max_frame_height);
08a24c47 1481 bzero (char_ins_del_vector, (sizeof (int)
8dd0c7cb 1482 + 2 * max_frame_width * sizeof (int)));
08a24c47 1483
ff11dfa1
JB
1484 if (f && (!TS_ins_line && !TS_del_line))
1485 do_line_insertion_deletion_costs (frame,
08a24c47
JB
1486 TS_rev_scroll, TS_ins_multi_lines,
1487 TS_fwd_scroll, TS_del_multi_lines,
ff11dfa1 1488 f, f, 1);
08a24c47 1489 else
ff11dfa1 1490 do_line_insertion_deletion_costs (frame,
08a24c47
JB
1491 TS_ins_line, TS_ins_multi_lines,
1492 TS_del_line, TS_del_multi_lines,
1493 0, 0, 1);
1494
ff11dfa1 1495 calculate_ins_del_char_costs (frame);
08a24c47
JB
1496
1497 /* Don't use TS_repeat if its padding is worse than sending the chars */
1498 if (TS_repeat && per_line_cost (TS_repeat) * baud_rate < 9000)
1499 RPov = string_cost (TS_repeat);
1500 else
ff11dfa1 1501 RPov = FRAME_WIDTH (frame) * 2;
08a24c47
JB
1502
1503 cmcostinit (); /* set up cursor motion costs */
1504}
1505\f
a796ac82
JB
1506struct fkey_table {
1507 char *cap, *name;
1508};
1509
01d8deb0
ER
1510 /* Termcap capability names that correspond directly to X keysyms.
1511 Some of these (marked "terminfo") aren't supplied by old-style
1512 (Berkeley) termcap entries. They're listed in X keysym order;
1513 except we put the keypad keys first, so that if they clash with
1514 other keys (as on the IBM PC keyboard) they get overridden.
1515 */
1516
a168702a
GM
1517static struct fkey_table keys[] =
1518{
01d8deb0
ER
1519 "kh", "home", /* termcap */
1520 "kl", "left", /* termcap */
1521 "ku", "up", /* termcap */
1522 "kr", "right", /* termcap */
1523 "kd", "down", /* termcap */
1524 "%8", "prior", /* terminfo */
1525 "%5", "next", /* terminfo */
1526 "@7", "end", /* terminfo */
1527 "@1", "begin", /* terminfo */
1528 "*6", "select", /* terminfo */
1529 "%9", "print", /* terminfo */
1530 "@4", "execute", /* terminfo --- actually the `command' key */
1531 /*
1532 * "insert" --- see below
1533 */
1534 "&8", "undo", /* terminfo */
1535 "%0", "redo", /* terminfo */
1536 "%7", "menu", /* terminfo --- actually the `options' key */
1537 "@0", "find", /* terminfo */
1538 "@2", "cancel", /* terminfo */
1539 "%1", "help", /* terminfo */
1540 /*
1541 * "break" goes here, but can't be reliably intercepted with termcap
1542 */
1543 "&4", "reset", /* terminfo --- actually `restart' */
1544 /*
1545 * "system" and "user" --- no termcaps
1546 */
1547 "kE", "clearline", /* terminfo */
1548 "kA", "insertline", /* terminfo */
1549 "kL", "deleteline", /* terminfo */
1550 "kI", "insertchar", /* terminfo */
1551 "kD", "deletechar", /* terminfo */
1552 "kB", "backtab", /* terminfo */
1553 /*
1554 * "kp_backtab", "kp-space", "kp-tab" --- no termcaps
1555 */
1556 "@8", "kp-enter", /* terminfo */
1557 /*
1558 * "kp-f1", "kp-f2", "kp-f3" "kp-f4",
1559 * "kp-multiply", "kp-add", "kp-separator",
1560 * "kp-subtract", "kp-decimal", "kp-divide", "kp-0";
1561 * --- no termcaps for any of these.
1562 */
1563 "K4", "kp-1", /* terminfo */
1564 /*
1565 * "kp-2" --- no termcap
1566 */
1567 "K5", "kp-3", /* terminfo */
1568 /*
1569 * "kp-4" --- no termcap
1570 */
1571 "K2", "kp-5", /* terminfo */
1572 /*
1573 * "kp-6" --- no termcap
1574 */
1575 "K1", "kp-7", /* terminfo */
1576 /*
1577 * "kp-8" --- no termcap
1578 */
1579 "K3", "kp-9", /* terminfo */
1580 /*
1581 * "kp-equal" --- no termcap
1582 */
1583 "k1", "f1",
1584 "k2", "f2",
1585 "k3", "f3",
1586 "k4", "f4",
1587 "k5", "f5",
1588 "k6", "f6",
1589 "k7", "f7",
1590 "k8", "f8",
1591 "k9", "f9",
a796ac82
JB
1592 };
1593
f2a00342
RM
1594static char **term_get_fkeys_arg;
1595static Lisp_Object term_get_fkeys_1 ();
465db27b 1596
01d8deb0
ER
1597/* Find the escape codes sent by the function keys for Vfunction_key_map.
1598 This function scans the termcap function key sequence entries, and
1599 adds entries to Vfunction_key_map for each function key it finds. */
1600
5c2c7893
JB
1601void
1602term_get_fkeys (address)
1603 char **address;
f2a00342
RM
1604{
1605 /* We run the body of the function (term_get_fkeys_1) and ignore all Lisp
1606 errors during the call. The only errors should be from Fdefine_key
1607 when given a key sequence containing an invalid prefix key. If the
1608 termcap defines function keys which use a prefix that is already bound
1609 to a command by the default bindings, we should silently ignore that
1610 function key specification, rather than giving the user an error and
1611 refusing to run at all on such a terminal. */
1612
1613 extern Lisp_Object Fidentity ();
f2a00342
RM
1614 term_get_fkeys_arg = address;
1615 internal_condition_case (term_get_fkeys_1, Qerror, Fidentity);
1616}
1617
1618static Lisp_Object
1619term_get_fkeys_1 ()
5c2c7893 1620{
5c2c7893
JB
1621 int i;
1622
37085233 1623 char **address = term_get_fkeys_arg;
f778aff2 1624
3e65092f
RS
1625 /* This can happen if CANNOT_DUMP or with strange options. */
1626 if (!initialized)
1627 Vfunction_key_map = Fmake_sparse_keymap (Qnil);
1628
5c2c7893
JB
1629 for (i = 0; i < (sizeof (keys)/sizeof (keys[0])); i++)
1630 {
1631 char *sequence = tgetstr (keys[i].cap, address);
1632 if (sequence)
f2a00342
RM
1633 Fdefine_key (Vfunction_key_map, build_string (sequence),
1634 Fmake_vector (make_number (1),
1635 intern (keys[i].name)));
5c2c7893 1636 }
a796ac82
JB
1637
1638 /* The uses of the "k0" capability are inconsistent; sometimes it
1639 describes F10, whereas othertimes it describes F0 and "k;" describes F10.
eb8c3be9 1640 We will attempt to politely accommodate both systems by testing for
a796ac82
JB
1641 "k;", and if it is present, assuming that "k0" denotes F0, otherwise F10.
1642 */
1643 {
1644 char *k_semi = tgetstr ("k;", address);
1645 char *k0 = tgetstr ("k0", address);
1646 char *k0_name = "f10";
1647
1648 if (k_semi)
1649 {
f2a00342
RM
1650 Fdefine_key (Vfunction_key_map, build_string (k_semi),
1651 Fmake_vector (make_number (1), intern ("f10")));
a796ac82
JB
1652 k0_name = "f0";
1653 }
1654
1655 if (k0)
f2a00342
RM
1656 Fdefine_key (Vfunction_key_map, build_string (k0),
1657 Fmake_vector (make_number (1), intern (k0_name)));
a796ac82 1658 }
01d8deb0
ER
1659
1660 /* Set up cookies for numbered function keys above f10. */
1661 {
1662 char fcap[3], fkey[4];
1663
fc4f24da 1664 fcap[0] = 'F'; fcap[2] = '\0';
01d8deb0
ER
1665 for (i = 11; i < 64; i++)
1666 {
1667 if (i <= 19)
1668 fcap[1] = '1' + i - 11;
1669 else if (i <= 45)
b59ab95c 1670 fcap[1] = 'A' + i - 20;
01d8deb0 1671 else
b59ab95c 1672 fcap[1] = 'a' + i - 46;
01d8deb0 1673
fc4f24da
RS
1674 {
1675 char *sequence = tgetstr (fcap, address);
1676 if (sequence)
1677 {
465db27b 1678 sprintf (fkey, "f%d", i);
f2a00342
RM
1679 Fdefine_key (Vfunction_key_map, build_string (sequence),
1680 Fmake_vector (make_number (1),
1681 intern (fkey)));
fc4f24da
RS
1682 }
1683 }
01d8deb0
ER
1684 }
1685 }
1686
1687 /*
1688 * Various mappings to try and get a better fit.
1689 */
1690 {
fc4f24da
RS
1691#define CONDITIONAL_REASSIGN(cap1, cap2, sym) \
1692 if (!tgetstr (cap1, address)) \
1693 { \
1694 char *sequence = tgetstr (cap2, address); \
1695 if (sequence) \
f2a00342
RM
1696 Fdefine_key (Vfunction_key_map, build_string (sequence), \
1697 Fmake_vector (make_number (1), \
1698 intern (sym))); \
fc4f24da 1699 }
01d8deb0
ER
1700
1701 /* if there's no key_next keycap, map key_npage to `next' keysym */
27b61785 1702 CONDITIONAL_REASSIGN ("%5", "kN", "next");
01d8deb0 1703 /* if there's no key_prev keycap, map key_ppage to `previous' keysym */
381d11a1 1704 CONDITIONAL_REASSIGN ("%8", "kP", "prior");
01d8deb0 1705 /* if there's no key_dc keycap, map key_ic to `insert' keysym */
27b61785 1706 CONDITIONAL_REASSIGN ("kD", "kI", "insert");
403c995b
RS
1707 /* if there's no key_end keycap, map key_ll to 'end' keysym */
1708 CONDITIONAL_REASSIGN ("@7", "kH", "end");
0a7f697a
KH
1709
1710 /* IBM has their own non-standard dialect of terminfo.
1711 If the standard name isn't found, try the IBM name. */
1712 CONDITIONAL_REASSIGN ("kB", "KO", "backtab");
1713 CONDITIONAL_REASSIGN ("@4", "kJ", "execute"); /* actually "action" */
1714 CONDITIONAL_REASSIGN ("@4", "kc", "execute"); /* actually "command" */
1715 CONDITIONAL_REASSIGN ("%7", "ki", "menu");
1716 CONDITIONAL_REASSIGN ("@7", "kw", "end");
1717 CONDITIONAL_REASSIGN ("F1", "k<", "f11");
1718 CONDITIONAL_REASSIGN ("F2", "k>", "f12");
1719 CONDITIONAL_REASSIGN ("%1", "kq", "help");
1720 CONDITIONAL_REASSIGN ("*6", "kU", "select");
1dd40212 1721#undef CONDITIONAL_REASSIGN
01d8deb0 1722 }
a168702a
GM
1723
1724 return Qnil;
5c2c7893
JB
1725}
1726
1727\f
a168702a
GM
1728/***********************************************************************
1729 Character Display Information
1730 ***********************************************************************/
1731
1732static void append_glyph P_ ((struct it *));
1733
1734
1735/* Append glyphs to IT's glyph_row. Called from produce_glyphs for
1736 terminal frames if IT->glyph_row != NULL. IT->c is the character
1737 for which to produce glyphs; IT->face_id contains the character's
1738 face. Padding glyphs are appended if IT->c has a IT->pixel_width >
1739 1. */
1740
1741static void
1742append_glyph (it)
1743 struct it *it;
1744{
1745 struct glyph *glyph, *end;
1746 int i;
1747
1748 xassert (it->glyph_row);
1749 glyph = (it->glyph_row->glyphs[it->area]
1750 + it->glyph_row->used[it->area]);
1751 end = it->glyph_row->glyphs[1 + it->area];
1752
1753 for (i = 0;
1754 i < it->pixel_width && glyph < end;
1755 ++i)
1756 {
1757 glyph->type = CHAR_GLYPH;
1758 glyph->pixel_width = 1;
1759 glyph->u.ch.code = it->c;
1760 glyph->u.ch.face_id = it->face_id;
1761 glyph->u.ch.padding_p = i > 0;
1762 glyph->charpos = CHARPOS (it->position);
1763 glyph->object = it->object;
1764
1765 ++it->glyph_row->used[it->area];
1766 ++glyph;
1767 }
1768}
1769
1770
1771/* Produce glyphs for the display element described by IT. The
1772 function fills output fields of IT with pixel information like the
1773 pixel width and height of a character, and maybe produces glyphs at
1774 the same time if IT->glyph_row is non-null. See the explanation of
1775 struct display_iterator in dispextern.h for an overview. */
1776
1777void
1778produce_glyphs (it)
1779 struct it *it;
1780{
1781 /* If a hook is installed, let it do the work. */
1782 xassert (it->what == IT_CHARACTER
1783 || it->what == IT_IMAGE
1784 || it->what == IT_STRETCH);
1785
1786 /* Nothing but characters are supported on terminal frames. */
1787 xassert (it->what == IT_CHARACTER);
1788
1789 if (it->c >= 040 && it->c < 0177)
1790 {
1791 it->pixel_width = it->nglyphs = 1;
1792 if (it->glyph_row)
1793 append_glyph (it);
1794 }
1795 else if (it->c == '\n')
1796 it->pixel_width = it->nglyphs = 0;
1797 else if (it->c == '\t')
1798 {
1799 int absolute_x = (it->current_x - it->prompt_width
1800 + it->continuation_lines_width);
1801 int next_tab_x
1802 = (((1 + absolute_x + it->tab_width - 1)
1803 / it->tab_width)
1804 * it->tab_width);
1805 int nspaces;
1806
1807 /* If part of the TAB has been displayed on the previous line
1808 which is continued now, continuation_lines_width will have
1809 been incremented already by the part that fitted on the
1810 continued line. So, we will get the right number of spaces
1811 here. */
1812 nspaces = next_tab_x - absolute_x;
1813
1814 if (it->glyph_row)
1815 {
1816 int n = nspaces;
1817
1818 it->c = ' ';
1819 it->pixel_width = it->len = 1;
1820
1821 while (n--)
1822 append_glyph (it);
1823
1824 it->c = '\t';
1825 }
1826
1827 it->pixel_width = nspaces;
1828 it->nglyphs = nspaces;
1829 }
1830 else
1831 {
1832 /* A multi-byte character. The display width is a per character
1833 value for characters of set CHARSET_COMPOSITION; otherwise
1834 it is fixed for all characters of the set. Some of the
1835 glyphs may have to be ignored because they are already
1836 displayed in a continued line. */
1837 int charset = CHAR_CHARSET (it->c);
1838
1839 if (charset == CHARSET_COMPOSITION)
1840 it->pixel_width = cmpchar_table[COMPOSITE_CHAR_ID (it->c)]->width;
1841 else
1842 it->pixel_width = CHARSET_WIDTH (charset);
1843 it->nglyphs = it->pixel_width;
1844
1845 if (it->glyph_row)
1846 append_glyph (it);
1847 }
1848
1849 /* Advance current_x by the pixel width as a convenience for
1850 the caller. */
1851 if (it->area == TEXT_AREA)
1852 it->current_x += it->pixel_width;
cfe8a05e
GM
1853 it->ascent = it->max_ascent = it->phys_ascent = it->max_phys_ascent = 0;
1854 it->descent = it->max_descent = it->phys_descent = it->max_phys_descent = 1;
a168702a
GM
1855}
1856
1857
1858/* Get information about special display element WHAT in an
1859 environment described by IT. WHAT is one of IT_TRUNCATION or
1860 IT_CONTINUATION. Maybe produce glyphs for WHAT if IT has a
1861 non-null glyph_row member. This function ensures that fields like
1862 face_id, c, len of IT are left untouched. */
1863
1864void
1865produce_special_glyphs (it, what)
1866 struct it *it;
1867 enum display_element_type what;
1868{
1869 struct it temp_it;
1870
1871 temp_it = *it;
1872 temp_it.dp = NULL;
1873 temp_it.what = IT_CHARACTER;
1874 temp_it.len = 1;
1875 temp_it.object = 0;
1876 bzero (&temp_it.current, sizeof temp_it.current);
1877
1878 if (what == IT_CONTINUATION)
1879 {
1880 /* Continuation glyph. */
1881 if (it->dp
1882 && INTEGERP (DISP_CONTINUE_GLYPH (it->dp))
1883 && GLYPH_CHAR_VALID_P (XINT (DISP_CONTINUE_GLYPH (it->dp))))
1884 {
1885 temp_it.c = FAST_GLYPH_CHAR (XINT (DISP_CONTINUE_GLYPH (it->dp)));
1886 temp_it.len = CHAR_LEN (temp_it.c);
1887 }
1888 else
1889 temp_it.c = '\\';
1890
1891 produce_glyphs (&temp_it);
1892 it->pixel_width = temp_it.pixel_width;
1893 it->nglyphs = temp_it.pixel_width;
1894 }
1895 else if (what == IT_TRUNCATION)
1896 {
1897 /* Truncation glyph. */
1898 if (it->dp
1899 && INTEGERP (DISP_TRUNC_GLYPH (it->dp))
1900 && GLYPH_CHAR_VALID_P (XINT (DISP_TRUNC_GLYPH (it->dp))))
1901 {
1902 temp_it.c = FAST_GLYPH_CHAR (XINT (DISP_TRUNC_GLYPH (it->dp)));
1903 temp_it.len = CHAR_LEN (temp_it.c);
1904 }
1905 else
1906 temp_it.c = '$';
1907
1908 produce_glyphs (&temp_it);
1909 it->pixel_width = temp_it.pixel_width;
1910 it->nglyphs = temp_it.pixel_width;
1911 }
1912 else
1913 abort ();
1914}
1915
1916
1917/* Return an estimation of the pixel height of mode or top lines on
1918 frame F. FACE_ID specifies what line's height to estimate. */
1919
1920int
1921estimate_mode_line_height (f, face_id)
1922 struct frame *f;
1923 enum face_id face_id;
1924{
1925 if (estimate_mode_line_height_hook)
1926 return estimate_mode_line_height_hook (f, face_id);
1927 else
1928 return 1;
1929}
1930
1931
1932\f
1933/***********************************************************************
1934 Faces
1935 ***********************************************************************/
1936
1937
1938/* Turn appearances of face FACE_ID on tty frame F on. */
1939
1940static void
1941turn_on_face (f, face_id)
1942 struct frame *f;
1943 int face_id;
1944{
1945 struct face *face = FACE_FROM_ID (f, face_id);
1946
1947 xassert (face != NULL);
1948
1949 if (face->tty_bold_p)
1950 OUTPUT1_IF (TS_enter_bold_mode);
1951 else if (face->tty_dim_p)
1952 OUTPUT1_IF (TS_enter_dim_mode);
1953
1954 /* Alternate charset and blinking not yet used. */
1955 if (face->tty_alt_charset_p)
1956 OUTPUT1_IF (TS_enter_alt_charset_mode);
1957
1958 if (face->tty_blinking_p)
1959 OUTPUT1_IF (TS_enter_blink_mode);
1960
1961 if (face->tty_underline_p
1962 /* Don't underline if that's difficult. */
1963 && TN_magic_cookie_glitch_ul <= 0)
1964 OUTPUT1_IF (TS_enter_underline_mode);
1965
1966 if (face->tty_reverse_p)
1967 OUTPUT1_IF (TS_enter_reverse_mode);
1968
1969 if (TN_max_colors > 0)
1970 {
1971 char *p;
1972
1973 if (face->foreground != FACE_TTY_DEFAULT_COLOR
1974 && TS_set_foreground)
1975 {
1976 p = tparam (TS_set_foreground, NULL, 0, (int) face->foreground);
1977 OUTPUT (p);
1978 xfree (p);
1979 }
1980
1981 if (face->background != FACE_TTY_DEFAULT_COLOR
1982 && TS_set_background)
1983 {
1984 p = tparam (TS_set_background, NULL, 0, (int) face->background);
1985 OUTPUT (p);
1986 xfree (p);
1987 }
1988 }
1989}
1990
1991
1992/* Turn off appearances of face FACE_ID on tty frame F. */
1993
1994static void
1995turn_off_face (f, face_id)
1996 struct frame *f;
1997 int face_id;
1998{
1999 struct face *face = FACE_FROM_ID (f, face_id);
a168702a
GM
2000
2001 xassert (face != NULL);
2002
2003 if (TS_exit_attribute_mode)
2004 {
2005 /* Capability "me" will turn off appearance modes double-bright,
2006 half-bright, reverse-video, standout, underline. It may or
2007 may not turn off alt-char-mode. */
2008 if (face->tty_bold_p
2009 || face->tty_dim_p
2010 || face->tty_reverse_p
2011 || face->tty_alt_charset_p
2012 || face->tty_blinking_p
2013 || face->tty_underline_p)
2014 OUTPUT1_IF (TS_exit_attribute_mode);
2015
2016 if (face->tty_alt_charset_p)
2017 OUTPUT_IF (TS_exit_alt_charset_mode);
2018 }
2019 else
2020 {
2021 /* If we don't have "me" we can only have those appearances
2022 that have exit sequences defined. */
2023 if (face->tty_alt_charset_p)
2024 OUTPUT_IF (TS_exit_alt_charset_mode);
2025
2026 if (face->tty_underline_p
2027 /* We don't underline if that's difficult. */
2028 && TN_magic_cookie_glitch_ul <= 0)
2029 OUTPUT_IF (TS_exit_underline_mode);
2030 }
2031
2032 /* Switch back to default colors. */
2033 if (TN_max_colors > 0
2034 && (face->foreground != FACE_TTY_DEFAULT_COLOR
2035 || face->background != FACE_TTY_DEFAULT_COLOR))
2036 OUTPUT1_IF (TS_orig_pair);
2037}
2038
2039
2040/* Return non-zero if the terminal is capable to display colors. */
2041
2042DEFUN ("tty-display-color-p", Ftty_display_color_p, Stty_display_color_p,
2043 0, 0, 0,
2044 "Return non-nil if TTY can display colors.")
2045 ()
2046{
2047 return TN_max_colors > 0 ? Qt : Qnil;
2048}
2049
2050
2051
2052\f
2053/***********************************************************************
2054 Initialization
2055 ***********************************************************************/
2056
dfcf069d 2057void
08a24c47
JB
2058term_init (terminal_type)
2059 char *terminal_type;
2060{
2061 char *area;
2062 char **address = &area;
2063 char buffer[2044];
2064 register char *p;
2065 int status;
e52f4e08 2066 struct frame *sf = XFRAME (selected_frame);
08a24c47 2067
cb28b9c2 2068#ifdef WINDOWSNT
29f27c39 2069 initialize_w32_display ();
cb28b9c2
RS
2070
2071 Wcm_clear ();
cb28b9c2 2072
a678d9ff 2073 area = (char *) xmalloc (2044);
cb28b9c2
RS
2074
2075 if (area == 0)
2076 abort ();
2077
e52f4e08
GM
2078 FrameRows = FRAME_HEIGHT (sf);
2079 FrameCols = FRAME_WIDTH (sf);
2080 specified_window = FRAME_HEIGHT (sf);
cb28b9c2
RS
2081
2082 delete_in_insert_mode = 1;
2083
2084 UseTabs = 0;
2085 scroll_region_ok = 0;
2086
2087 /* Seems to insert lines when it's not supposed to, messing
2088 up the display. In doing a trace, it didn't seem to be
2089 called much, so I don't think we're losing anything by
2090 turning it off. */
2091
2092 line_ins_del_ok = 0;
2093 char_ins_del_ok = 1;
2094
2095 baud_rate = 19200;
2096
e52f4e08
GM
2097 FRAME_CAN_HAVE_SCROLL_BARS (sf) = 0;
2098 FRAME_VERTICAL_SCROLL_BAR_TYPE (sf) = vertical_scroll_bar_none;
cb28b9c2
RS
2099
2100 return;
eccec691 2101#else /* not WINDOWSNT */
cb28b9c2 2102
08a24c47 2103 Wcm_clear ();
08a24c47
JB
2104
2105 status = tgetent (buffer, terminal_type);
2106 if (status < 0)
b0347178
KH
2107 {
2108#ifdef TERMINFO
e12c1054 2109 fatal ("Cannot open terminfo database file");
b0347178 2110#else
e12c1054 2111 fatal ("Cannot open termcap database file");
b0347178
KH
2112#endif
2113 }
08a24c47 2114 if (status == 0)
b0347178
KH
2115 {
2116#ifdef TERMINFO
2117 fatal ("Terminal type %s is not defined.\n\
2118If that is not the actual type of terminal you have,\n\
2119use the Bourne shell command `TERM=... export TERM' (C-shell:\n\
2120`setenv TERM ...') to specify the correct type. It may be necessary\n\
e12c1054 2121to do `unset TERMINFO' (C-shell: `unsetenv TERMINFO') as well.",
b0347178
KH
2122 terminal_type);
2123#else
2124 fatal ("Terminal type %s is not defined.\n\
c5a9c3e6
RS
2125If that is not the actual type of terminal you have,\n\
2126use the Bourne shell command `TERM=... export TERM' (C-shell:\n\
2127`setenv TERM ...') to specify the correct type. It may be necessary\n\
e12c1054 2128to do `unset TERMCAP' (C-shell: `unsetenv TERMCAP') as well.",
b0347178
KH
2129 terminal_type);
2130#endif
2131 }
08a24c47 2132#ifdef TERMINFO
a678d9ff 2133 area = (char *) xmalloc (2044);
08a24c47 2134#else
a678d9ff 2135 area = (char *) xmalloc (strlen (buffer));
08a24c47
JB
2136#endif /* not TERMINFO */
2137 if (area == 0)
2138 abort ();
2139
2140 TS_ins_line = tgetstr ("al", address);
2141 TS_ins_multi_lines = tgetstr ("AL", address);
2142 TS_bell = tgetstr ("bl", address);
2143 BackTab = tgetstr ("bt", address);
2144 TS_clr_to_bottom = tgetstr ("cd", address);
2145 TS_clr_line = tgetstr ("ce", address);
ff11dfa1 2146 TS_clr_frame = tgetstr ("cl", address);
08a24c47
JB
2147 ColPosition = tgetstr ("ch", address);
2148 AbsPosition = tgetstr ("cm", address);
2149 CR = tgetstr ("cr", address);
2150 TS_set_scroll_region = tgetstr ("cs", address);
2151 TS_set_scroll_region_1 = tgetstr ("cS", address);
2152 RowPosition = tgetstr ("cv", address);
2153 TS_del_char = tgetstr ("dc", address);
2154 TS_del_multi_chars = tgetstr ("DC", address);
2155 TS_del_line = tgetstr ("dl", address);
2156 TS_del_multi_lines = tgetstr ("DL", address);
2157 TS_delete_mode = tgetstr ("dm", address);
2158 TS_end_delete_mode = tgetstr ("ed", address);
2159 TS_end_insert_mode = tgetstr ("ei", address);
2160 Home = tgetstr ("ho", address);
2161 TS_ins_char = tgetstr ("ic", address);
2162 TS_ins_multi_chars = tgetstr ("IC", address);
2163 TS_insert_mode = tgetstr ("im", address);
2164 TS_pad_inserted_char = tgetstr ("ip", address);
2165 TS_end_keypad_mode = tgetstr ("ke", address);
2166 TS_keypad_mode = tgetstr ("ks", address);
2167 LastLine = tgetstr ("ll", address);
2168 Right = tgetstr ("nd", address);
2169 Down = tgetstr ("do", address);
2170 if (!Down)
2171 Down = tgetstr ("nl", address); /* Obsolete name for "do" */
2172#ifdef VMS
2173 /* VMS puts a carriage return before each linefeed,
2174 so it is not safe to use linefeeds. */
2175 if (Down && Down[0] == '\n' && Down[1] == '\0')
2176 Down = 0;
2177#endif /* VMS */
2178 if (tgetflag ("bs"))
2179 Left = "\b"; /* can't possibly be longer! */
2180 else /* (Actually, "bs" is obsolete...) */
2181 Left = tgetstr ("le", address);
2182 if (!Left)
2183 Left = tgetstr ("bc", address); /* Obsolete name for "le" */
2184 TS_pad_char = tgetstr ("pc", address);
2185 TS_repeat = tgetstr ("rp", address);
2186 TS_end_standout_mode = tgetstr ("se", address);
2187 TS_fwd_scroll = tgetstr ("sf", address);
2188 TS_standout_mode = tgetstr ("so", address);
2189 TS_rev_scroll = tgetstr ("sr", address);
2190 Wcm.cm_tab = tgetstr ("ta", address);
2191 TS_end_termcap_modes = tgetstr ("te", address);
2192 TS_termcap_modes = tgetstr ("ti", address);
2193 Up = tgetstr ("up", address);
2194 TS_visible_bell = tgetstr ("vb", address);
a168702a
GM
2195 TS_cursor_normal = tgetstr ("ve", address);
2196 TS_cursor_visible = tgetstr ("vs", address);
2197 TS_cursor_invisible = tgetstr ("vi", address);
08a24c47 2198 TS_set_window = tgetstr ("wi", address);
a168702a
GM
2199
2200 TS_enter_underline_mode = tgetstr ("us", address);
2201 TS_exit_underline_mode = tgetstr ("ue", address);
2202 TN_magic_cookie_glitch_ul = tgetnum ("ug");
2203 TS_enter_bold_mode = tgetstr ("md", address);
2204 TS_enter_dim_mode = tgetstr ("mh", address);
2205 TS_enter_blink_mode = tgetstr ("mb", address);
2206 TS_enter_reverse_mode = tgetstr ("mr", address);
2207 TS_enter_alt_charset_mode = tgetstr ("as", address);
2208 TS_exit_alt_charset_mode = tgetstr ("ae", address);
2209 TS_exit_attribute_mode = tgetstr ("me", address);
2210
08a24c47
JB
2211 MultiUp = tgetstr ("UP", address);
2212 MultiDown = tgetstr ("DO", address);
2213 MultiLeft = tgetstr ("LE", address);
2214 MultiRight = tgetstr ("RI", address);
2215
a168702a
GM
2216 /* SVr4/ANSI color suppert. */
2217 TS_orig_pair = tgetstr ("op", address);
2218 TS_set_foreground = tgetstr ("AF", address);
2219 TS_set_background = tgetstr ("AB", address);
2220 if (!TS_set_foreground)
2221 {
2222 /* SVr4. */
2223 TS_set_foreground = tgetstr ("Sf", address);
2224 TS_set_background = tgetstr ("Sb", address);
2225 }
2226 TN_max_colors = tgetnum ("Co");
2227 TN_max_pairs = tgetnum ("pa");
2228
e4058338
KH
2229 MagicWrap = tgetflag ("xn");
2230 /* Since we make MagicWrap terminals look like AutoWrap, we need to have
2231 the former flag imply the latter. */
2232 AutoWrap = MagicWrap || tgetflag ("am");
ff11dfa1 2233 memory_below_frame = tgetflag ("db");
08a24c47
JB
2234 TF_hazeltine = tgetflag ("hz");
2235 must_write_spaces = tgetflag ("in");
2236 meta_key = tgetflag ("km") || tgetflag ("MT");
2237 TF_insmode_motion = tgetflag ("mi");
2238 TF_standout_motion = tgetflag ("ms");
2239 TF_underscore = tgetflag ("ul");
08a24c47
JB
2240 TF_xs = tgetflag ("xs");
2241 TF_teleray = tgetflag ("xt");
2242
5c2c7893
JB
2243 term_get_fkeys (address);
2244
ff11dfa1 2245 /* Get frame size from system, or else from termcap. */
3b12ce12
RS
2246 {
2247 int height, width;
2248 get_frame_size (&width, &height);
e52f4e08
GM
2249 FRAME_WIDTH (sf) = width;
2250 FRAME_HEIGHT (sf) = height;
3b12ce12
RS
2251 }
2252
e52f4e08
GM
2253 if (FRAME_WIDTH (sf) <= 0)
2254 SET_FRAME_WIDTH (sf, tgetnum ("co"));
1efd8636
RS
2255 else
2256 /* Keep width and external_width consistent */
e52f4e08
GM
2257 SET_FRAME_WIDTH (sf, FRAME_WIDTH (sf));
2258 if (FRAME_HEIGHT (sf) <= 0)
2259 FRAME_HEIGHT (sf) = tgetnum ("li");
1efd8636 2260
e52f4e08 2261 if (FRAME_HEIGHT (sf) < 3 || FRAME_WIDTH (sf) < 3)
e12c1054 2262 fatal ("Screen size %dx%d is too small",
e52f4e08 2263 FRAME_HEIGHT (sf), FRAME_WIDTH (sf));
ee7a2de4 2264
08a24c47
JB
2265 min_padding_speed = tgetnum ("pb");
2266 TN_standout_width = tgetnum ("sg");
2267 TabWidth = tgetnum ("tw");
2268
2269#ifdef VMS
2270 /* These capabilities commonly use ^J.
2271 I don't know why, but sending them on VMS does not work;
2272 it causes following spaces to be lost, sometimes.
2273 For now, the simplest fix is to avoid using these capabilities ever. */
2274 if (Down && Down[0] == '\n')
2275 Down = 0;
2276#endif /* VMS */
2277
2278 if (!TS_bell)
2279 TS_bell = "\07";
2280
2281 if (!TS_fwd_scroll)
2282 TS_fwd_scroll = Down;
2283
2284 PC = TS_pad_char ? *TS_pad_char : 0;
2285
2286 if (TabWidth < 0)
2287 TabWidth = 8;
2288
2289/* Turned off since /etc/termcap seems to have :ta= for most terminals
2290 and newer termcap doc does not seem to say there is a default.
2291 if (!Wcm.cm_tab)
2292 Wcm.cm_tab = "\t";
2293*/
2294
2295 if (TS_standout_mode == 0)
2296 {
2297 TN_standout_width = tgetnum ("ug");
2298 TS_end_standout_mode = tgetstr ("ue", address);
2299 TS_standout_mode = tgetstr ("us", address);
2300 }
2301
afd359c4
RS
2302 /* If no `se' string, try using a `me' string instead.
2303 If that fails, we can't use standout mode at all. */
2304 if (TS_end_standout_mode == 0)
2305 {
e4bfb3b6 2306 char *s = tgetstr ("me", address);
afd359c4
RS
2307 if (s != 0)
2308 TS_end_standout_mode = s;
2309 else
2310 TS_standout_mode = 0;
2311 }
2312
08a24c47
JB
2313 if (TF_teleray)
2314 {
2315 Wcm.cm_tab = 0;
2316 /* Teleray: most programs want a space in front of TS_standout_mode,
2317 but Emacs can do without it (and give one extra column). */
2318 TS_standout_mode = "\033RD";
2319 TN_standout_width = 1;
2320 /* But that means we cannot rely on ^M to go to column zero! */
2321 CR = 0;
2322 /* LF can't be trusted either -- can alter hpos */
2323 /* if move at column 0 thru a line with TS_standout_mode */
2324 Down = 0;
2325 }
2326
2327 /* Special handling for certain terminal types known to need it */
2328
2329 if (!strcmp (terminal_type, "supdup"))
2330 {
ff11dfa1 2331 memory_below_frame = 1;
08a24c47
JB
2332 Wcm.cm_losewrap = 1;
2333 }
2334 if (!strncmp (terminal_type, "c10", 3)
2335 || !strcmp (terminal_type, "perq"))
2336 {
2337 /* Supply a makeshift :wi string.
2338 This string is not valid in general since it works only
2339 for windows starting at the upper left corner;
2340 but that is all Emacs uses.
2341
ff11dfa1 2342 This string works only if the frame is using
08a24c47
JB
2343 the top of the video memory, because addressing is memory-relative.
2344 So first check the :ti string to see if that is true.
2345
2346 It would be simpler if the :wi string could go in the termcap
2347 entry, but it can't because it is not fully valid.
2348 If it were in the termcap entry, it would confuse other programs. */
2349 if (!TS_set_window)
2350 {
2351 p = TS_termcap_modes;
2352 while (*p && strcmp (p, "\033v "))
2353 p++;
2354 if (*p)
2355 TS_set_window = "\033v%C %C %C %C ";
2356 }
2357 /* Termcap entry often fails to have :in: flag */
2358 must_write_spaces = 1;
2359 /* :ti string typically fails to have \E^G! in it */
2360 /* This limits scope of insert-char to one line. */
2361 strcpy (area, TS_termcap_modes);
2362 strcat (area, "\033\007!");
2363 TS_termcap_modes = area;
2364 area += strlen (area) + 1;
2365 p = AbsPosition;
2366 /* Change all %+ parameters to %C, to handle
2367 values above 96 correctly for the C100. */
2368 while (*p)
2369 {
2370 if (p[0] == '%' && p[1] == '+')
2371 p[1] = 'C';
2372 p++;
2373 }
2374 }
2375
e52f4e08
GM
2376 FrameRows = FRAME_HEIGHT (sf);
2377 FrameCols = FRAME_WIDTH (sf);
2378 specified_window = FRAME_HEIGHT (sf);
08a24c47
JB
2379
2380 if (Wcm_init () == -1) /* can't do cursor motion */
2381#ifdef VMS
2382 fatal ("Terminal type \"%s\" is not powerful enough to run Emacs.\n\
2383It lacks the ability to position the cursor.\n\
2384If that is not the actual type of terminal you have, use either the\n\
2385DCL command `SET TERMINAL/DEVICE= ...' for DEC-compatible terminals,\n\
e12c1054 2386or `define EMACS_TERM \"terminal type\"' for non-DEC terminals.",
08a24c47 2387 terminal_type);
37dad45a
RS
2388#else /* not VMS */
2389# ifdef TERMINFO
2390 fatal ("Terminal type \"%s\" is not powerful enough to run Emacs.\n\
2391It lacks the ability to position the cursor.\n\
2392If that is not the actual type of terminal you have,\n\
2393use the Bourne shell command `TERM=... export TERM' (C-shell:\n\
2394`setenv TERM ...') to specify the correct type. It may be necessary\n\
e12c1054 2395to do `unset TERMINFO' (C-shell: `unsetenv TERMINFO') as well.",
37dad45a
RS
2396 terminal_type);
2397# else /* TERMCAP */
08a24c47
JB
2398 fatal ("Terminal type \"%s\" is not powerful enough to run Emacs.\n\
2399It lacks the ability to position the cursor.\n\
2400If that is not the actual type of terminal you have,\n\
c5a9c3e6
RS
2401use the Bourne shell command `TERM=... export TERM' (C-shell:\n\
2402`setenv TERM ...') to specify the correct type. It may be necessary\n\
e12c1054 2403to do `unset TERMCAP' (C-shell: `unsetenv TERMCAP') as well.",
08a24c47 2404 terminal_type);
37dad45a
RS
2405# endif /* TERMINFO */
2406#endif /*VMS */
e52f4e08
GM
2407 if (FRAME_HEIGHT (sf) <= 0
2408 || FRAME_WIDTH (sf) <= 0)
e12c1054 2409 fatal ("The frame size has not been specified");
08a24c47
JB
2410
2411 delete_in_insert_mode
2412 = TS_delete_mode && TS_insert_mode
2413 && !strcmp (TS_delete_mode, TS_insert_mode);
2414
2415 se_is_so = (TS_standout_mode
2416 && TS_end_standout_mode
2417 && !strcmp (TS_standout_mode, TS_end_standout_mode));
2418
2419 /* Remove width of standout marker from usable width of line */
2420 if (TN_standout_width > 0)
e52f4e08 2421 SET_FRAME_WIDTH (sf, FRAME_WIDTH (sf) - TN_standout_width);
08a24c47
JB
2422
2423 UseTabs = tabs_safe_p () && TabWidth == 8;
2424
2425 scroll_region_ok
2426 = (Wcm.cm_abs
2427 && (TS_set_window || TS_set_scroll_region || TS_set_scroll_region_1));
2428
2429 line_ins_del_ok = (((TS_ins_line || TS_ins_multi_lines)
2430 && (TS_del_line || TS_del_multi_lines))
2431 || (scroll_region_ok && TS_fwd_scroll && TS_rev_scroll));
2432
2433 char_ins_del_ok = ((TS_ins_char || TS_insert_mode
2434 || TS_pad_inserted_char || TS_ins_multi_chars)
2435 && (TS_del_char || TS_del_multi_chars));
2436
2437 fast_clear_end_of_line = TS_clr_line != 0;
2438
2439 init_baud_rate ();
2440 if (read_socket_hook) /* Baudrate is somewhat */
2441 /* meaningless in this case */
2442 baud_rate = 9600;
20a558dc 2443
e52f4e08
GM
2444 FRAME_CAN_HAVE_SCROLL_BARS (sf) = 0;
2445 FRAME_VERTICAL_SCROLL_BAR_TYPE (sf) = vertical_scroll_bar_none;
eccec691 2446#endif /* WINDOWSNT */
08a24c47
JB
2447}
2448
2449/* VARARGS 1 */
dfcf069d 2450void
08a24c47 2451fatal (str, arg1, arg2)
4746118a 2452 char *str, *arg1, *arg2;
08a24c47
JB
2453{
2454 fprintf (stderr, "emacs: ");
2455 fprintf (stderr, str, arg1, arg2);
e12c1054 2456 fprintf (stderr, "\n");
08a24c47
JB
2457 fflush (stderr);
2458 exit (1);
2459}
07c57952 2460
dfcf069d 2461void
07c57952
KH
2462syms_of_term ()
2463{
2464 DEFVAR_BOOL ("system-uses-terminfo", &system_uses_terminfo,
2465 "Non-nil means the system uses terminfo rather than termcap.\n\
2466This variable can be used by terminal emulator packages.");
2467#ifdef TERMINFO
2468 system_uses_terminfo = 1;
2469#else
2470 system_uses_terminfo = 0;
2471#endif
c291d9ef
RS
2472
2473 DEFVAR_LISP ("ring-bell-function", &Vring_bell_function,
2474 "Non-nil means call this function to ring the bell.\n\
2475The function should accept no arguments.");
2476 Vring_bell_function = Qnil;
a168702a
GM
2477
2478 defsubr (&Stty_display_color_p);
07c57952 2479}
a168702a 2480