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