(ange-ftp-binary-file-name-regexp): Handle .gz.
[emacs.git] / src / term.c
blob6d4cba2a10da032c62a3dab5d78decdad6b81149
1 /* terminal control module for terminals described by TERMCAP
2 Copyright (C) 1985, 1986, 1987, 1993 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
21 #include <stdio.h>
22 #include <ctype.h>
23 #include "config.h"
24 #include "termchar.h"
25 #include "termopts.h"
26 #include "cm.h"
27 #undef NULL
28 #include "lisp.h"
29 #include "frame.h"
30 #include "disptab.h"
31 #include "termhooks.h"
32 #include "keyboard.h"
34 #define max(a, b) ((a) > (b) ? (a) : (b))
35 #define min(a, b) ((a) < (b) ? (a) : (b))
37 #define OUTPUT(a) tputs (a, FRAME_HEIGHT (selected_frame) - curY, cmputc)
38 #define OUTPUT1(a) tputs (a, 1, cmputc)
39 #define OUTPUTL(a, lines) tputs (a, lines, cmputc)
40 #define OUTPUT_IF(a) { if (a) tputs (a, FRAME_HEIGHT (selected_frame) - curY, cmputc); }
41 #define OUTPUT1_IF(a) { if (a) tputs (a, 1, cmputc); }
43 /* Terminal charateristics that higher levels want to look at.
44 These are all extern'd in termchar.h */
46 int must_write_spaces; /* Nonzero means spaces in the text
47 must actually be output; can't just skip
48 over some columns to leave them blank. */
49 int min_padding_speed; /* Speed below which no padding necessary */
51 int line_ins_del_ok; /* Terminal can insert and delete lines */
52 int char_ins_del_ok; /* Terminal can insert and delete chars */
53 int scroll_region_ok; /* Terminal supports setting the
54 scroll window */
55 int memory_below_frame; /* Terminal remembers lines
56 scrolled off bottom */
57 int fast_clear_end_of_line; /* Terminal has a `ce' string */
59 int dont_calculate_costs; /* Nonzero means don't bother computing */
60 /* various cost tables; we won't use them. */
62 /* Nonzero means no need to redraw the entire frame on resuming
63 a suspended Emacs. This is useful on terminals with multiple pages,
64 where one page is used for Emacs and another for all else. */
65 int no_redraw_on_reenter;
67 /* Hook functions that you can set to snap out the functions in this file.
68 These are all extern'd in termhooks.h */
70 int (*cursor_to_hook) ();
71 int (*raw_cursor_to_hook) ();
73 int (*clear_to_end_hook) ();
74 int (*clear_frame_hook) ();
75 int (*clear_end_of_line_hook) ();
77 int (*ins_del_lines_hook) ();
79 int (*change_line_highlight_hook) ();
80 int (*reassert_line_highlight_hook) ();
82 int (*insert_glyphs_hook) ();
83 int (*write_glyphs_hook) ();
84 int (*delete_glyphs_hook) ();
86 int (*ring_bell_hook) ();
88 int (*reset_terminal_modes_hook) ();
89 int (*set_terminal_modes_hook) ();
90 int (*update_begin_hook) ();
91 int (*update_end_hook) ();
92 int (*set_terminal_window_hook) ();
94 int (*read_socket_hook) ();
96 /* Return the current position of the mouse.
98 Set *f to the frame the mouse is in, or zero if the mouse is in no
99 Emacs frame. If it is set to zero, all the other arguments are
100 garbage.
102 If the motion started in a scroll bar, set *bar_window to the
103 scroll bar's window, *part to the part the mouse is currently over,
104 *x to the position of the mouse along the scroll bar, and *y to the
105 overall length of the scroll bar.
107 Otherwise, set *bar_window to Qnil, and *x and *y to the column and
108 row of the character cell the mouse is over.
110 Set *time to the time the mouse was at the returned position.
112 This should clear mouse_moved until the next motion
113 event arrives. */
114 void (*mouse_position_hook) ( /* FRAME_PTR *f,
115 Lisp_Object *bar_window,
116 enum scroll_bar_part *part,
117 Lisp_Object *x,
118 Lisp_Object *y,
119 unsigned long *time */ );
121 /* When reading from a minibuffer in a different frame, Emacs wants
122 to shift the highlight from the selected frame to the minibuffer's
123 frame; under X, this means it lies about where the focus is.
124 This hook tells the window system code to re-decide where to put
125 the highlight. */
126 void (*frame_rehighlight_hook) ( /* FRAME_PTR f */ );
128 /* If we're displaying frames using a window system that can stack
129 frames on top of each other, this hook allows you to bring a frame
130 to the front, or bury it behind all the other windows. If this
131 hook is zero, that means the device we're displaying on doesn't
132 support overlapping frames, so there's no need to raise or lower
133 anything.
135 If RAISE is non-zero, F is brought to the front, before all other
136 windows. If RAISE is zero, F is sent to the back, behind all other
137 windows. */
138 void (*frame_raise_lower_hook) ( /* FRAME_PTR f, int raise */ );
140 /* Set the vertical scroll bar for WINDOW to have its upper left corner
141 at (TOP, LEFT), and be LENGTH rows high. Set its handle to
142 indicate that we are displaying PORTION characters out of a total
143 of WHOLE characters, starting at POSITION. If WINDOW doesn't yet
144 have a scroll bar, create one for it. */
145 void (*set_vertical_scroll_bar_hook)
146 ( /* struct window *window,
147 int portion, int whole, int position */ );
150 /* The following three hooks are used when we're doing a thorough
151 redisplay of the frame. We don't explicitly know which scroll bars
152 are going to be deleted, because keeping track of when windows go
153 away is a real pain - can you say set-window-configuration?
154 Instead, we just assert at the beginning of redisplay that *all*
155 scroll bars are to be removed, and then save scroll bars from the
156 firey pit when we actually redisplay their window. */
158 /* Arrange for all scroll bars on FRAME to be removed at the next call
159 to `*judge_scroll_bars_hook'. A scroll bar may be spared if
160 `*redeem_scroll_bar_hook' is applied to its window before the judgement.
162 This should be applied to each frame each time its window tree is
163 redisplayed, even if it is not displaying scroll bars at the moment;
164 if the HAS_SCROLL_BARS flag has just been turned off, only calling
165 this and the judge_scroll_bars_hook will get rid of them.
167 If non-zero, this hook should be safe to apply to any frame,
168 whether or not it can support scroll bars, and whether or not it is
169 currently displaying them. */
170 void (*condemn_scroll_bars_hook)( /* FRAME_PTR *frame */ );
172 /* Unmark WINDOW's scroll bar for deletion in this judgement cycle.
173 Note that it's okay to redeem a scroll bar that is not condemned. */
174 void (*redeem_scroll_bar_hook)( /* struct window *window */ );
176 /* Remove all scroll bars on FRAME that haven't been saved since the
177 last call to `*condemn_scroll_bars_hook'.
179 This should be applied to each frame after each time its window
180 tree is redisplayed, even if it is not displaying scroll bars at the
181 moment; if the HAS_SCROLL_BARS flag has just been turned off, only
182 calling this and condemn_scroll_bars_hook will get rid of them.
184 If non-zero, this hook should be safe to apply to any frame,
185 whether or not it can support scroll bars, and whether or not it is
186 currently displaying them. */
187 void (*judge_scroll_bars_hook)( /* FRAME_PTR *FRAME */ );
190 /* Strings, numbers and flags taken from the termcap entry. */
192 char *TS_ins_line; /* termcap "al" */
193 char *TS_ins_multi_lines; /* "AL" (one parameter, # lines to insert) */
194 char *TS_bell; /* "bl" */
195 char *TS_clr_to_bottom; /* "cd" */
196 char *TS_clr_line; /* "ce", clear to end of line */
197 char *TS_clr_frame; /* "cl" */
198 char *TS_set_scroll_region; /* "cs" (2 params, first line and last line) */
199 char *TS_set_scroll_region_1; /* "cS" (4 params: total lines,
200 lines above scroll region, lines below it,
201 total lines again) */
202 char *TS_del_char; /* "dc" */
203 char *TS_del_multi_chars; /* "DC" (one parameter, # chars to delete) */
204 char *TS_del_line; /* "dl" */
205 char *TS_del_multi_lines; /* "DL" (one parameter, # lines to delete) */
206 char *TS_delete_mode; /* "dm", enter character-delete mode */
207 char *TS_end_delete_mode; /* "ed", leave character-delete mode */
208 char *TS_end_insert_mode; /* "ei", leave character-insert mode */
209 char *TS_ins_char; /* "ic" */
210 char *TS_ins_multi_chars; /* "IC" (one parameter, # chars to insert) */
211 char *TS_insert_mode; /* "im", enter character-insert mode */
212 char *TS_pad_inserted_char; /* "ip". Just padding, no commands. */
213 char *TS_end_keypad_mode; /* "ke" */
214 char *TS_keypad_mode; /* "ks" */
215 char *TS_pad_char; /* "pc", char to use as padding */
216 char *TS_repeat; /* "rp" (2 params, # times to repeat
217 and character to be repeated) */
218 char *TS_end_standout_mode; /* "se" */
219 char *TS_fwd_scroll; /* "sf" */
220 char *TS_standout_mode; /* "so" */
221 char *TS_rev_scroll; /* "sr" */
222 char *TS_end_termcap_modes; /* "te" */
223 char *TS_termcap_modes; /* "ti" */
224 char *TS_visible_bell; /* "vb" */
225 char *TS_end_visual_mode; /* "ve" */
226 char *TS_visual_mode; /* "vi" */
227 char *TS_set_window; /* "wi" (4 params, start and end of window,
228 each as vpos and hpos) */
230 int TF_hazeltine; /* termcap hz flag. */
231 int TF_insmode_motion; /* termcap mi flag: can move while in insert mode. */
232 int TF_standout_motion; /* termcap mi flag: can move while in standout mode. */
233 int TF_underscore; /* termcap ul flag: _ underlines if overstruck on
234 nonblank position. Must clear before writing _. */
235 int TF_teleray; /* termcap xt flag: many weird consequences.
236 For t1061. */
238 int TF_xs; /* Nonzero for "xs". If set together with
239 TN_standout_width == 0, it means don't bother
240 to write any end-standout cookies. */
242 int TN_standout_width; /* termcap sg number: width occupied by standout
243 markers */
245 static int RPov; /* # chars to start a TS_repeat */
247 static int delete_in_insert_mode; /* delete mode == insert mode */
249 static int se_is_so; /* 1 if same string both enters and leaves
250 standout mode */
252 /* internal state */
254 /* Number of chars of space used for standout marker at beginning of line,
255 or'd with 0100. Zero if no standout marker at all.
257 Used IFF TN_standout_width >= 0. */
259 static char *chars_wasted;
260 static char *copybuf;
262 /* nonzero means supposed to write text in standout mode. */
263 int standout_requested;
265 int insert_mode; /* Nonzero when in insert mode. */
266 int standout_mode; /* Nonzero when in standout mode. */
268 /* Size of window specified by higher levels.
269 This is the number of lines, from the top of frame downwards,
270 which can participate in insert-line/delete-line operations.
272 Effectively it excludes the bottom frame_height - specified_window_size
273 lines from those operations. */
275 int specified_window;
277 /* Frame currently being redisplayed; 0 if not currently redisplaying.
278 (Direct output does not count). */
280 FRAME_PTR updating_frame;
282 char *tparam ();
284 ring_bell ()
286 if (! FRAME_TERMCAP_P (selected_frame))
288 (*ring_bell_hook) ();
289 return;
291 OUTPUT (TS_visible_bell && visible_bell ? TS_visible_bell : TS_bell);
294 set_terminal_modes ()
296 if (! FRAME_TERMCAP_P (selected_frame))
298 (*set_terminal_modes_hook) ();
299 return;
301 OUTPUT_IF (TS_termcap_modes);
302 OUTPUT_IF (TS_visual_mode);
303 OUTPUT_IF (TS_keypad_mode);
304 losecursor ();
307 reset_terminal_modes ()
309 if (! FRAME_TERMCAP_P (selected_frame))
311 (*reset_terminal_modes_hook) ();
312 return;
314 if (TN_standout_width < 0)
315 turn_off_highlight ();
316 turn_off_insert ();
317 OUTPUT_IF (TS_end_keypad_mode);
318 OUTPUT_IF (TS_end_visual_mode);
319 OUTPUT_IF (TS_end_termcap_modes);
320 /* Output raw CR so kernel can track the cursor hpos. */
321 /* But on magic-cookie terminals this can erase an end-standout marker and
322 cause the rest of the frame to be in standout, so move down first. */
323 if (TN_standout_width >= 0)
324 cmputc ('\n');
325 cmputc ('\r');
328 update_begin (f)
329 FRAME_PTR f;
331 updating_frame = f;
332 if (! FRAME_TERMCAP_P (updating_frame))
333 (*update_begin_hook) (f);
336 update_end (f)
337 FRAME_PTR f;
339 if (! FRAME_TERMCAP_P (updating_frame))
341 (*update_end_hook) (f);
342 updating_frame = 0;
343 return;
345 turn_off_insert ();
346 background_highlight ();
347 standout_requested = 0;
348 updating_frame = 0;
351 set_terminal_window (size)
352 int size;
354 if (! FRAME_TERMCAP_P (updating_frame))
356 (*set_terminal_window_hook) (size);
357 return;
359 specified_window = size ? size : FRAME_HEIGHT (selected_frame);
360 if (!scroll_region_ok)
361 return;
362 set_scroll_region (0, specified_window);
365 set_scroll_region (start, stop)
366 int start, stop;
368 char *buf;
369 if (TS_set_scroll_region)
371 buf = tparam (TS_set_scroll_region, 0, 0, start, stop - 1);
373 else if (TS_set_scroll_region_1)
375 buf = tparam (TS_set_scroll_region_1, 0, 0,
376 FRAME_HEIGHT (selected_frame), start,
377 FRAME_HEIGHT (selected_frame) - stop,
378 FRAME_HEIGHT (selected_frame));
380 else
382 buf = tparam (TS_set_window, 0, 0, start, 0, stop, FRAME_WIDTH (selected_frame));
384 OUTPUT (buf);
385 xfree (buf);
386 losecursor ();
389 turn_on_insert ()
391 if (!insert_mode)
392 OUTPUT (TS_insert_mode);
393 insert_mode = 1;
396 turn_off_insert ()
398 if (insert_mode)
399 OUTPUT (TS_end_insert_mode);
400 insert_mode = 0;
403 /* Handle highlighting when TN_standout_width (termcap sg) is not specified.
404 In these terminals, output is affected by the value of standout
405 mode when the output is written.
407 These functions are called on all terminals, but do nothing
408 on terminals whose standout mode does not work that way. */
410 turn_off_highlight ()
412 if (TN_standout_width < 0)
414 if (standout_mode)
415 OUTPUT_IF (TS_end_standout_mode);
416 standout_mode = 0;
420 turn_on_highlight ()
422 if (TN_standout_width < 0)
424 if (!standout_mode)
425 OUTPUT_IF (TS_standout_mode);
426 standout_mode = 1;
430 /* Set standout mode to the state it should be in for
431 empty space inside windows. What this is,
432 depends on the user option inverse-video. */
434 background_highlight ()
436 if (TN_standout_width >= 0)
437 return;
438 if (inverse_video)
439 turn_on_highlight ();
440 else
441 turn_off_highlight ();
444 /* Set standout mode to the mode specified for the text to be output. */
446 static
447 highlight_if_desired ()
449 if (TN_standout_width >= 0)
450 return;
451 if (!inverse_video == !standout_requested)
452 turn_off_highlight ();
453 else
454 turn_on_highlight ();
457 /* Handle standout mode for terminals in which TN_standout_width >= 0.
458 On these terminals, standout is controlled by markers that
459 live inside the terminal's memory. TN_standout_width is the width
460 that the marker occupies in memory. Standout runs from the marker
461 to the end of the line on some terminals, or to the next
462 turn-off-standout marker (TS_end_standout_mode) string
463 on other terminals. */
465 /* Write a standout marker or end-standout marker at the front of the line
466 at vertical position vpos. */
468 write_standout_marker (flag, vpos)
469 int flag, vpos;
471 if (flag || (TS_end_standout_mode && !TF_teleray && !se_is_so
472 && !(TF_xs && TN_standout_width == 0)))
474 cmgoto (vpos, 0);
475 cmplus (TN_standout_width);
476 OUTPUT (flag ? TS_standout_mode : TS_end_standout_mode);
477 chars_wasted[curY] = TN_standout_width | 0100;
481 /* External interface to control of standout mode.
482 Call this when about to modify line at position VPOS
483 and not change whether it is highlighted. */
485 reassert_line_highlight (highlight, vpos)
486 int highlight;
487 int vpos;
489 if (! FRAME_TERMCAP_P ((updating_frame ? updating_frame : selected_frame)))
491 (*reassert_line_highlight_hook) (highlight, vpos);
492 return;
494 if (TN_standout_width < 0)
495 /* Handle terminals where standout takes affect at output time */
496 standout_requested = highlight;
497 else if (chars_wasted[vpos] == 0)
498 /* For terminals with standout markers, write one on this line
499 if there isn't one already. */
500 write_standout_marker (highlight, vpos);
503 /* Call this when about to modify line at position VPOS
504 and change whether it is highlighted. */
506 change_line_highlight (new_highlight, vpos, first_unused_hpos)
507 int new_highlight, vpos, first_unused_hpos;
509 standout_requested = new_highlight;
510 if (! FRAME_TERMCAP_P (updating_frame))
512 (*change_line_highlight_hook) (new_highlight, vpos, first_unused_hpos);
513 return;
516 cursor_to (vpos, 0);
518 if (TN_standout_width < 0)
519 background_highlight ();
520 /* If line starts with a marker, delete the marker */
521 else if (TS_clr_line && chars_wasted[curY])
523 turn_off_insert ();
524 /* On Teleray, make sure to erase the SO marker. */
525 if (TF_teleray)
527 cmgoto (curY - 1, FRAME_WIDTH (selected_frame) - 4);
528 OUTPUT ("\033S");
529 curY++; /* ESC S moves to next line where the TS_standout_mode was */
530 curX = 0;
532 else
533 cmgoto (curY, 0); /* reposition to kill standout marker */
535 clear_end_of_line_raw (first_unused_hpos);
536 reassert_line_highlight (new_highlight, curY);
540 /* Move to absolute position, specified origin 0 */
542 cursor_to (row, col)
543 int row, col;
545 if (! FRAME_TERMCAP_P ((updating_frame
546 ? updating_frame
547 : selected_frame))
548 && cursor_to_hook)
550 (*cursor_to_hook) (row, col);
551 return;
554 col += chars_wasted[row] & 077;
555 if (curY == row && curX == col)
556 return;
557 if (!TF_standout_motion)
558 background_highlight ();
559 if (!TF_insmode_motion)
560 turn_off_insert ();
561 cmgoto (row, col);
564 /* Similar but don't take any account of the wasted characters. */
566 raw_cursor_to (row, col)
567 int row, col;
569 if (! FRAME_TERMCAP_P ((updating_frame ? updating_frame : selected_frame)))
571 (*raw_cursor_to_hook) (row, col);
572 return;
574 if (curY == row && curX == col)
575 return;
576 if (!TF_standout_motion)
577 background_highlight ();
578 if (!TF_insmode_motion)
579 turn_off_insert ();
580 cmgoto (row, col);
583 /* Erase operations */
585 /* clear from cursor to end of frame */
586 clear_to_end ()
588 register int i;
590 if (clear_to_end_hook && FRAME_TERMCAP_P (updating_frame))
592 (*clear_to_end_hook) ();
593 return;
595 if (TS_clr_to_bottom)
597 background_highlight ();
598 OUTPUT (TS_clr_to_bottom);
599 bzero (chars_wasted + curY, FRAME_HEIGHT (selected_frame) - curY);
601 else
603 for (i = curY; i < FRAME_HEIGHT (selected_frame); i++)
605 cursor_to (i, 0);
606 clear_end_of_line_raw (FRAME_WIDTH (selected_frame));
611 /* Clear entire frame */
613 clear_frame ()
615 if (clear_frame_hook
616 && ! FRAME_TERMCAP_P ((updating_frame ? updating_frame : selected_frame)))
618 (*clear_frame_hook) ();
619 return;
621 if (TS_clr_frame)
623 background_highlight ();
624 OUTPUT (TS_clr_frame);
625 bzero (chars_wasted, FRAME_HEIGHT (selected_frame));
626 cmat (0, 0);
628 else
630 cursor_to (0, 0);
631 clear_to_end ();
635 /* Clear to end of line, but do not clear any standout marker.
636 Assumes that the cursor is positioned at a character of real text,
637 which implies it cannot be before a standout marker
638 unless the marker has zero width.
640 Note that the cursor may be moved. */
642 clear_end_of_line (first_unused_hpos)
643 int first_unused_hpos;
645 static GLYPH buf = SPACEGLYPH;
646 if (FRAME_TERMCAP_P (selected_frame)
647 && TN_standout_width == 0 && curX == 0 && chars_wasted[curY] != 0)
648 write_glyphs (&buf, 1);
649 clear_end_of_line_raw (first_unused_hpos);
652 /* Clear from cursor to end of line.
653 Assume that the line is already clear starting at column first_unused_hpos.
654 If the cursor is at a standout marker, erase the marker.
656 Note that the cursor may be moved, on terminals lacking a `ce' string. */
658 clear_end_of_line_raw (first_unused_hpos)
659 int first_unused_hpos;
661 register int i;
663 if (clear_end_of_line_hook
664 && ! FRAME_TERMCAP_P ((updating_frame
665 ? updating_frame
666 : selected_frame)))
668 (*clear_end_of_line_hook) (first_unused_hpos);
669 return;
672 first_unused_hpos += chars_wasted[curY] & 077;
673 if (curX >= first_unused_hpos)
674 return;
675 /* Notice if we are erasing a magic cookie */
676 if (curX == 0)
677 chars_wasted[curY] = 0;
678 background_highlight ();
679 if (TS_clr_line)
681 OUTPUT1 (TS_clr_line);
683 else
684 { /* have to do it the hard way */
685 turn_off_insert ();
687 /* Do not write in last row last col with Autowrap on. */
688 if (AutoWrap && curY == FRAME_HEIGHT (selected_frame) - 1
689 && first_unused_hpos == FRAME_WIDTH (selected_frame))
690 first_unused_hpos--;
692 for (i = curX; i < first_unused_hpos; i++)
694 if (termscript)
695 fputc (' ', termscript);
696 putchar (' ');
698 cmplus (first_unused_hpos - curX);
703 write_glyphs (string, len)
704 register GLYPH *string;
705 register int len;
707 register GLYPH g;
708 register int tlen = GLYPH_TABLE_LENGTH;
709 register Lisp_Object *tbase = GLYPH_TABLE_BASE;
711 if (write_glyphs_hook
712 && ! FRAME_TERMCAP_P ((updating_frame ? updating_frame : selected_frame)))
714 (*write_glyphs_hook) (string, len);
715 return;
718 highlight_if_desired ();
719 turn_off_insert ();
721 /* Don't dare write in last column of bottom line, if AutoWrap,
722 since that would scroll the whole frame on some terminals. */
724 if (AutoWrap
725 && curY + 1 == FRAME_HEIGHT (selected_frame)
726 && (curX + len - (chars_wasted[curY] & 077)
727 == FRAME_WIDTH (selected_frame)))
728 len --;
730 cmplus (len);
731 while (--len >= 0)
733 g = *string++;
734 /* Check quickly for G beyond length of table.
735 That implies it isn't an alias and is simple. */
736 if (g >= tlen)
738 simple:
739 putc (g & 0xff, stdout);
740 if (ferror (stdout))
741 clearerr (stdout);
742 if (termscript)
743 putc (g & 0xff, termscript);
745 else
747 /* G has an entry in Vglyph_table,
748 so process any alias and then test for simpleness. */
749 while (GLYPH_ALIAS_P (tbase, tlen, g))
750 g = GLYPH_ALIAS (tbase, g);
751 if (GLYPH_SIMPLE_P (tbase, tlen, g))
752 goto simple;
753 else
755 /* Here if G (or its definition as an alias) is not simple. */
756 fwrite (GLYPH_STRING (tbase, g), 1, GLYPH_LENGTH (tbase, g),
757 stdout);
758 if (ferror (stdout))
759 clearerr (stdout);
760 if (termscript)
761 fwrite (GLYPH_STRING (tbase, g), 1, GLYPH_LENGTH (tbase, g),
762 termscript);
768 /* If start is zero, insert blanks instead of a string at start */
770 insert_glyphs (start, len)
771 register GLYPH *start;
772 register int len;
774 char *buf;
775 register GLYPH g;
776 register int tlen = GLYPH_TABLE_LENGTH;
777 register Lisp_Object *tbase = GLYPH_TABLE_BASE;
779 if (insert_glyphs_hook && ! FRAME_TERMCAP_P (updating_frame))
781 (*insert_glyphs_hook) (start, len);
782 return;
784 highlight_if_desired ();
786 if (TS_ins_multi_chars)
788 buf = tparam (TS_ins_multi_chars, 0, 0, len);
789 OUTPUT1 (buf);
790 xfree (buf);
791 if (start)
792 write_glyphs (start, len);
793 return;
796 turn_on_insert ();
797 cmplus (len);
798 while (--len >= 0)
800 OUTPUT1_IF (TS_ins_char);
801 if (!start)
802 g = SPACEGLYPH;
803 else
804 g = *start++;
806 if (GLYPH_SIMPLE_P (tbase, tlen, g))
808 putc (g & 0xff, stdout);
809 if (ferror (stdout))
810 clearerr (stdout);
811 if (termscript)
812 putc (g & 0xff, termscript);
814 else
816 fwrite (GLYPH_STRING (tbase, g), 1, GLYPH_LENGTH (tbase, g), stdout);
817 if (ferror (stdout))
818 clearerr (stdout);
819 if (termscript)
820 fwrite (GLYPH_STRING (tbase, g), 1, GLYPH_LENGTH (tbase, g),
821 termscript);
824 OUTPUT1_IF (TS_pad_inserted_char);
828 delete_glyphs (n)
829 register int n;
831 char *buf;
832 register int i;
834 if (delete_glyphs_hook && ! FRAME_TERMCAP_P (updating_frame))
836 (*delete_glyphs_hook) (n);
837 return;
840 if (delete_in_insert_mode)
842 turn_on_insert ();
844 else
846 turn_off_insert ();
847 OUTPUT_IF (TS_delete_mode);
850 if (TS_del_multi_chars)
852 buf = tparam (TS_del_multi_chars, 0, 0, n);
853 OUTPUT1 (buf);
854 xfree (buf);
856 else
857 for (i = 0; i < n; i++)
858 OUTPUT1 (TS_del_char);
859 if (!delete_in_insert_mode)
860 OUTPUT_IF (TS_end_delete_mode);
863 /* Insert N lines at vpos VPOS. If N is negative, delete -N lines. */
865 ins_del_lines (vpos, n)
866 int vpos, n;
868 char *multi = n > 0 ? TS_ins_multi_lines : TS_del_multi_lines;
869 char *single = n > 0 ? TS_ins_line : TS_del_line;
870 char *scroll = n > 0 ? TS_rev_scroll : TS_fwd_scroll;
872 register int i = n > 0 ? n : -n;
873 register char *buf;
875 if (ins_del_lines_hook && ! FRAME_TERMCAP_P (updating_frame))
877 (*ins_del_lines_hook) (vpos, n);
878 return;
881 /* If the lines below the insertion are being pushed
882 into the end of the window, this is the same as clearing;
883 and we know the lines are already clear, since the matching
884 deletion has already been done. So can ignore this. */
885 /* If the lines below the deletion are blank lines coming
886 out of the end of the window, don't bother,
887 as there will be a matching inslines later that will flush them. */
888 if (scroll_region_ok && vpos + i >= specified_window)
889 return;
890 if (!memory_below_frame && vpos + i >= FRAME_HEIGHT (selected_frame))
891 return;
893 if (multi)
895 raw_cursor_to (vpos, 0);
896 background_highlight ();
897 buf = tparam (multi, 0, 0, i);
898 OUTPUT (buf);
899 xfree (buf);
901 else if (single)
903 raw_cursor_to (vpos, 0);
904 background_highlight ();
905 while (--i >= 0)
906 OUTPUT (single);
907 if (TF_teleray)
908 curX = 0;
910 else
912 set_scroll_region (vpos, specified_window);
913 if (n < 0)
914 raw_cursor_to (specified_window - 1, 0);
915 else
916 raw_cursor_to (vpos, 0);
917 background_highlight ();
918 while (--i >= 0)
919 OUTPUTL (scroll, specified_window - vpos);
920 set_scroll_region (0, specified_window);
923 if (TN_standout_width >= 0)
925 register lower_limit
926 = (scroll_region_ok
927 ? specified_window
928 : FRAME_HEIGHT (selected_frame));
930 if (n < 0)
932 bcopy (&chars_wasted[vpos - n], &chars_wasted[vpos],
933 lower_limit - vpos + n);
934 bzero (&chars_wasted[lower_limit + n], - n);
936 else
938 bcopy (&chars_wasted[vpos], &copybuf[vpos], lower_limit - vpos - n);
939 bcopy (&copybuf[vpos], &chars_wasted[vpos + n],
940 lower_limit - vpos - n);
941 bzero (&chars_wasted[vpos], n);
944 if (!scroll_region_ok && memory_below_frame && n < 0)
946 cursor_to (FRAME_HEIGHT (selected_frame) + n, 0);
947 clear_to_end ();
951 /* Compute cost of sending "str", in characters,
952 not counting any line-dependent padding. */
955 string_cost (str)
956 char *str;
958 cost = 0;
959 if (str)
960 tputs (str, 0, evalcost);
961 return cost;
964 /* Compute cost of sending "str", in characters,
965 counting any line-dependent padding at one line. */
967 static int
968 string_cost_one_line (str)
969 char *str;
971 cost = 0;
972 if (str)
973 tputs (str, 1, evalcost);
974 return cost;
977 /* Compute per line amount of line-dependent padding,
978 in tenths of characters. */
981 per_line_cost (str)
982 register char *str;
984 cost = 0;
985 if (str)
986 tputs (str, 0, evalcost);
987 cost = - cost;
988 if (str)
989 tputs (str, 10, evalcost);
990 return cost;
993 #ifndef old
994 /* char_ins_del_cost[n] is cost of inserting N characters.
995 char_ins_del_cost[-n] is cost of deleting N characters. */
997 int *char_ins_del_vector;
999 #define char_ins_del_cost(f) (&char_ins_del_vector[FRAME_WIDTH ((f))])
1000 #endif
1002 /* ARGSUSED */
1003 static void
1004 calculate_ins_del_char_costs (frame)
1005 FRAME_PTR frame;
1007 int ins_startup_cost, del_startup_cost;
1008 int ins_cost_per_char, del_cost_per_char;
1009 register int i;
1010 register int *p;
1012 if (TS_ins_multi_chars)
1014 ins_cost_per_char = 0;
1015 ins_startup_cost = string_cost_one_line (TS_ins_multi_chars);
1017 else if (TS_ins_char || TS_pad_inserted_char
1018 || (TS_insert_mode && TS_end_insert_mode))
1020 ins_startup_cost = (30 * (string_cost (TS_insert_mode)
1021 + string_cost (TS_end_insert_mode))) / 100;
1022 ins_cost_per_char = (string_cost_one_line (TS_ins_char)
1023 + string_cost_one_line (TS_pad_inserted_char));
1025 else
1027 ins_startup_cost = 9999;
1028 ins_cost_per_char = 0;
1031 if (TS_del_multi_chars)
1033 del_cost_per_char = 0;
1034 del_startup_cost = string_cost_one_line (TS_del_multi_chars);
1036 else if (TS_del_char)
1038 del_startup_cost = (string_cost (TS_delete_mode)
1039 + string_cost (TS_end_delete_mode));
1040 if (delete_in_insert_mode)
1041 del_startup_cost /= 2;
1042 del_cost_per_char = string_cost_one_line (TS_del_char);
1044 else
1046 del_startup_cost = 9999;
1047 del_cost_per_char = 0;
1050 /* Delete costs are at negative offsets */
1051 p = &char_ins_del_cost (frame)[0];
1052 for (i = FRAME_WIDTH (selected_frame); --i >= 0;)
1053 *--p = (del_startup_cost += del_cost_per_char);
1055 /* Doing nothing is free */
1056 p = &char_ins_del_cost (frame)[0];
1057 *p++ = 0;
1059 /* Insert costs are at positive offsets */
1060 for (i = FRAME_WIDTH (frame); --i >= 0;)
1061 *p++ = (ins_startup_cost += ins_cost_per_char);
1064 #ifdef HAVE_X_WINDOWS
1065 extern int x_screen_planes;
1066 #endif
1068 extern do_line_insertion_deletion_costs ();
1070 calculate_costs (frame)
1071 FRAME_PTR frame;
1073 register char *f = TS_set_scroll_region ?
1074 TS_set_scroll_region
1075 : TS_set_scroll_region_1;
1077 if (dont_calculate_costs)
1078 return;
1080 #ifdef HAVE_X_WINDOWS
1081 if (FRAME_X_P (frame))
1083 do_line_insertion_deletion_costs (frame, 0, ".5*", 0, ".5*",
1084 0, 0, x_screen_planes);
1085 return;
1087 #endif
1089 /* These variables are only used for terminal stuff. They are allocated
1090 once for the terminal frame of X-windows emacs, but not used afterwards.
1092 char_ins_del_vector (i.e., char_ins_del_cost) isn't used because
1093 X turns off char_ins_del_ok.
1095 chars_wasted and copybuf are only used here in term.c in cases where
1096 the term hook isn't called. */
1098 if (chars_wasted != 0)
1099 chars_wasted = (char *) xrealloc (chars_wasted, FRAME_HEIGHT (frame));
1100 else
1101 chars_wasted = (char *) xmalloc (FRAME_HEIGHT (frame));
1103 if (copybuf != 0)
1104 copybuf = (char *) xrealloc (copybuf, FRAME_HEIGHT (frame));
1105 else
1106 copybuf = (char *) xmalloc (FRAME_HEIGHT (frame));
1108 if (char_ins_del_vector != 0)
1109 char_ins_del_vector
1110 = (int *) xrealloc (char_ins_del_vector,
1111 (sizeof (int)
1112 + 2 * FRAME_WIDTH (frame) * sizeof (int)));
1113 else
1114 char_ins_del_vector
1115 = (int *) xmalloc (sizeof (int)
1116 + 2 * FRAME_WIDTH (frame) * sizeof (int));
1118 bzero (chars_wasted, FRAME_HEIGHT (frame));
1119 bzero (copybuf, FRAME_HEIGHT (frame));
1120 bzero (char_ins_del_vector, (sizeof (int)
1121 + 2 * FRAME_WIDTH (frame) * sizeof (int)));
1123 if (f && (!TS_ins_line && !TS_del_line))
1124 do_line_insertion_deletion_costs (frame,
1125 TS_rev_scroll, TS_ins_multi_lines,
1126 TS_fwd_scroll, TS_del_multi_lines,
1127 f, f, 1);
1128 else
1129 do_line_insertion_deletion_costs (frame,
1130 TS_ins_line, TS_ins_multi_lines,
1131 TS_del_line, TS_del_multi_lines,
1132 0, 0, 1);
1134 calculate_ins_del_char_costs (frame);
1136 /* Don't use TS_repeat if its padding is worse than sending the chars */
1137 if (TS_repeat && per_line_cost (TS_repeat) * baud_rate < 9000)
1138 RPov = string_cost (TS_repeat);
1139 else
1140 RPov = FRAME_WIDTH (frame) * 2;
1142 cmcostinit (); /* set up cursor motion costs */
1145 struct fkey_table {
1146 char *cap, *name;
1149 /* Termcap capability names that correspond directly to X keysyms.
1150 Some of these (marked "terminfo") aren't supplied by old-style
1151 (Berkeley) termcap entries. They're listed in X keysym order;
1152 except we put the keypad keys first, so that if they clash with
1153 other keys (as on the IBM PC keyboard) they get overridden.
1156 static struct fkey_table keys[] = {
1157 "kh", "home", /* termcap */
1158 "kl", "left", /* termcap */
1159 "ku", "up", /* termcap */
1160 "kr", "right", /* termcap */
1161 "kd", "down", /* termcap */
1162 "%8", "prior", /* terminfo */
1163 "%5", "next", /* terminfo */
1164 "@7", "end", /* terminfo */
1165 "@1", "begin", /* terminfo */
1166 "*6", "select", /* terminfo */
1167 "%9", "print", /* terminfo */
1168 "@4", "execute", /* terminfo --- actually the `command' key */
1170 * "insert" --- see below
1172 "&8", "undo", /* terminfo */
1173 "%0", "redo", /* terminfo */
1174 "%7", "menu", /* terminfo --- actually the `options' key */
1175 "@0", "find", /* terminfo */
1176 "@2", "cancel", /* terminfo */
1177 "%1", "help", /* terminfo */
1179 * "break" goes here, but can't be reliably intercepted with termcap
1181 "&4", "reset", /* terminfo --- actually `restart' */
1183 * "system" and "user" --- no termcaps
1185 "kE", "clearline", /* terminfo */
1186 "kA", "insertline", /* terminfo */
1187 "kL", "deleteline", /* terminfo */
1188 "kI", "insertchar", /* terminfo */
1189 "kD", "deletechar", /* terminfo */
1190 "kB", "backtab", /* terminfo */
1192 * "kp_backtab", "kp-space", "kp-tab" --- no termcaps
1194 "@8", "kp-enter", /* terminfo */
1196 * "kp-f1", "kp-f2", "kp-f3" "kp-f4",
1197 * "kp-multiply", "kp-add", "kp-separator",
1198 * "kp-subtract", "kp-decimal", "kp-divide", "kp-0";
1199 * --- no termcaps for any of these.
1201 "K4", "kp-1", /* terminfo */
1203 * "kp-2" --- no termcap
1205 "K5", "kp-3", /* terminfo */
1207 * "kp-4" --- no termcap
1209 "K2", "kp-5", /* terminfo */
1211 * "kp-6" --- no termcap
1213 "K1", "kp-7", /* terminfo */
1215 * "kp-8" --- no termcap
1217 "K3", "kp-9", /* terminfo */
1219 * "kp-equal" --- no termcap
1221 "k1", "f1",
1222 "k2", "f2",
1223 "k3", "f3",
1224 "k4", "f4",
1225 "k5", "f5",
1226 "k6", "f6",
1227 "k7", "f7",
1228 "k8", "f8",
1229 "k9", "f9",
1232 /* Find the escape codes sent by the function keys for Vfunction_key_map.
1233 This function scans the termcap function key sequence entries, and
1234 adds entries to Vfunction_key_map for each function key it finds. */
1236 void
1237 term_get_fkeys (address)
1238 char **address;
1240 extern char *tgetstr ();
1241 int i;
1243 /* This can happen if CANNOT_DUMP or with strange options. */
1244 if (!initialized)
1245 Vfunction_key_map = Fmake_sparse_keymap (Qnil);
1247 for (i = 0; i < (sizeof (keys)/sizeof (keys[0])); i++)
1249 char *sequence = tgetstr (keys[i].cap, address);
1250 if (sequence)
1251 Fdefine_key (Vfunction_key_map,
1252 build_string (sequence),
1253 Fmake_vector (make_number (1), intern (keys[i].name)));
1256 /* The uses of the "k0" capability are inconsistent; sometimes it
1257 describes F10, whereas othertimes it describes F0 and "k;" describes F10.
1258 We will attempt to politely accomodate both systems by testing for
1259 "k;", and if it is present, assuming that "k0" denotes F0, otherwise F10.
1262 char *k_semi = tgetstr ("k;", address);
1263 char *k0 = tgetstr ("k0", address);
1264 char *k0_name = "f10";
1266 if (k_semi)
1268 Fdefine_key (Vfunction_key_map,
1269 build_string (k_semi),
1270 Fmake_vector (make_number (1), intern ("f10")));
1271 k0_name = "f0";
1274 if (k0)
1275 Fdefine_key (Vfunction_key_map,
1276 build_string (k0),
1277 Fmake_vector (make_number (1), intern (k0_name)));
1280 /* Set up cookies for numbered function keys above f10. */
1282 char fcap[3], fkey[4];
1284 fcap[0] = 'k'; fcap[2] = '\0';
1285 for (i = 11; i < 64; i++)
1287 if (i <= 19)
1288 fcap[1] = '1' + i - 11;
1289 else if (i <= 45)
1290 fcap[1] = 'A' + i - 11;
1291 else
1292 fcap[1] = 'a' + i - 11;
1294 if (tgetstr (fcap, address))
1296 (void) sprintf (fkey, "f%d", i);
1297 Fdefine_key (Vfunction_key_map,
1298 build_string (fcap),
1299 Fmake_vector (make_number (1), intern (fkey)));
1305 * Various mappings to try and get a better fit.
1308 #define CONDITIONAL_REASSIGN(cap1, cap2, sym) \
1309 if (!tgetstr (cap1, address) && tgetstr (cap2, address)) \
1310 Fdefine_key (Vfunction_key_map, \
1311 build_string (cap2), \
1312 Fmake_vector (make_number (1), intern (sym)))
1314 /* if there's no key_next keycap, map key_npage to `next' keysym */
1315 CONDITIONAL_REASSIGN ("%5", "kN", "next");
1316 /* if there's no key_prev keycap, map key_ppage to `previous' keysym */
1317 CONDITIONAL_REASSIGN ("%8", "kP", "previous");
1318 /* if there's no key_dc keycap, map key_ic to `insert' keysym */
1319 CONDITIONAL_REASSIGN ("kD", "kI", "insert");
1320 #undef CONDITIONAL_REASSIGN
1325 term_init (terminal_type)
1326 char *terminal_type;
1328 char *area;
1329 char **address = &area;
1330 char buffer[2044];
1331 register char *p;
1332 int status;
1334 extern char *tgetstr ();
1336 Wcm_clear ();
1337 dont_calculate_costs = 0;
1339 status = tgetent (buffer, terminal_type);
1340 if (status < 0)
1341 fatal ("Cannot open termcap database file.\n");
1342 if (status == 0)
1343 fatal ("Terminal type %s is not defined.\n", terminal_type);
1345 #ifdef TERMINFO
1346 area = (char *) malloc (2044);
1347 #else
1348 area = (char *) malloc (strlen (buffer));
1349 #endif /* not TERMINFO */
1350 if (area == 0)
1351 abort ();
1353 TS_ins_line = tgetstr ("al", address);
1354 TS_ins_multi_lines = tgetstr ("AL", address);
1355 TS_bell = tgetstr ("bl", address);
1356 BackTab = tgetstr ("bt", address);
1357 TS_clr_to_bottom = tgetstr ("cd", address);
1358 TS_clr_line = tgetstr ("ce", address);
1359 TS_clr_frame = tgetstr ("cl", address);
1360 ColPosition = tgetstr ("ch", address);
1361 AbsPosition = tgetstr ("cm", address);
1362 CR = tgetstr ("cr", address);
1363 TS_set_scroll_region = tgetstr ("cs", address);
1364 TS_set_scroll_region_1 = tgetstr ("cS", address);
1365 RowPosition = tgetstr ("cv", address);
1366 TS_del_char = tgetstr ("dc", address);
1367 TS_del_multi_chars = tgetstr ("DC", address);
1368 TS_del_line = tgetstr ("dl", address);
1369 TS_del_multi_lines = tgetstr ("DL", address);
1370 TS_delete_mode = tgetstr ("dm", address);
1371 TS_end_delete_mode = tgetstr ("ed", address);
1372 TS_end_insert_mode = tgetstr ("ei", address);
1373 Home = tgetstr ("ho", address);
1374 TS_ins_char = tgetstr ("ic", address);
1375 TS_ins_multi_chars = tgetstr ("IC", address);
1376 TS_insert_mode = tgetstr ("im", address);
1377 TS_pad_inserted_char = tgetstr ("ip", address);
1378 TS_end_keypad_mode = tgetstr ("ke", address);
1379 TS_keypad_mode = tgetstr ("ks", address);
1380 LastLine = tgetstr ("ll", address);
1381 Right = tgetstr ("nd", address);
1382 Down = tgetstr ("do", address);
1383 if (!Down)
1384 Down = tgetstr ("nl", address); /* Obsolete name for "do" */
1385 #ifdef VMS
1386 /* VMS puts a carriage return before each linefeed,
1387 so it is not safe to use linefeeds. */
1388 if (Down && Down[0] == '\n' && Down[1] == '\0')
1389 Down = 0;
1390 #endif /* VMS */
1391 if (tgetflag ("bs"))
1392 Left = "\b"; /* can't possibly be longer! */
1393 else /* (Actually, "bs" is obsolete...) */
1394 Left = tgetstr ("le", address);
1395 if (!Left)
1396 Left = tgetstr ("bc", address); /* Obsolete name for "le" */
1397 TS_pad_char = tgetstr ("pc", address);
1398 TS_repeat = tgetstr ("rp", address);
1399 TS_end_standout_mode = tgetstr ("se", address);
1400 TS_fwd_scroll = tgetstr ("sf", address);
1401 TS_standout_mode = tgetstr ("so", address);
1402 TS_rev_scroll = tgetstr ("sr", address);
1403 Wcm.cm_tab = tgetstr ("ta", address);
1404 TS_end_termcap_modes = tgetstr ("te", address);
1405 TS_termcap_modes = tgetstr ("ti", address);
1406 Up = tgetstr ("up", address);
1407 TS_visible_bell = tgetstr ("vb", address);
1408 TS_end_visual_mode = tgetstr ("ve", address);
1409 TS_visual_mode = tgetstr ("vs", address);
1410 TS_set_window = tgetstr ("wi", address);
1411 MultiUp = tgetstr ("UP", address);
1412 MultiDown = tgetstr ("DO", address);
1413 MultiLeft = tgetstr ("LE", address);
1414 MultiRight = tgetstr ("RI", address);
1416 AutoWrap = tgetflag ("am");
1417 memory_below_frame = tgetflag ("db");
1418 TF_hazeltine = tgetflag ("hz");
1419 must_write_spaces = tgetflag ("in");
1420 meta_key = tgetflag ("km") || tgetflag ("MT");
1421 TF_insmode_motion = tgetflag ("mi");
1422 TF_standout_motion = tgetflag ("ms");
1423 TF_underscore = tgetflag ("ul");
1424 MagicWrap = tgetflag ("xn");
1425 TF_xs = tgetflag ("xs");
1426 TF_teleray = tgetflag ("xt");
1428 term_get_fkeys (address);
1430 /* Get frame size from system, or else from termcap. */
1431 get_frame_size (&FRAME_WIDTH (selected_frame),
1432 &FRAME_HEIGHT (selected_frame));
1433 if (FRAME_WIDTH (selected_frame) <= 0)
1434 FRAME_WIDTH (selected_frame) = tgetnum ("co");
1435 if (FRAME_HEIGHT (selected_frame) <= 0)
1436 FRAME_HEIGHT (selected_frame) = tgetnum ("li");
1438 min_padding_speed = tgetnum ("pb");
1439 TN_standout_width = tgetnum ("sg");
1440 TabWidth = tgetnum ("tw");
1442 #ifdef VMS
1443 /* These capabilities commonly use ^J.
1444 I don't know why, but sending them on VMS does not work;
1445 it causes following spaces to be lost, sometimes.
1446 For now, the simplest fix is to avoid using these capabilities ever. */
1447 if (Down && Down[0] == '\n')
1448 Down = 0;
1449 #endif /* VMS */
1451 if (!TS_bell)
1452 TS_bell = "\07";
1454 if (!TS_fwd_scroll)
1455 TS_fwd_scroll = Down;
1457 PC = TS_pad_char ? *TS_pad_char : 0;
1459 if (TabWidth < 0)
1460 TabWidth = 8;
1462 /* Turned off since /etc/termcap seems to have :ta= for most terminals
1463 and newer termcap doc does not seem to say there is a default.
1464 if (!Wcm.cm_tab)
1465 Wcm.cm_tab = "\t";
1468 if (TS_standout_mode == 0)
1470 TN_standout_width = tgetnum ("ug");
1471 TS_end_standout_mode = tgetstr ("ue", address);
1472 TS_standout_mode = tgetstr ("us", address);
1475 if (TF_teleray)
1477 Wcm.cm_tab = 0;
1478 /* Teleray: most programs want a space in front of TS_standout_mode,
1479 but Emacs can do without it (and give one extra column). */
1480 TS_standout_mode = "\033RD";
1481 TN_standout_width = 1;
1482 /* But that means we cannot rely on ^M to go to column zero! */
1483 CR = 0;
1484 /* LF can't be trusted either -- can alter hpos */
1485 /* if move at column 0 thru a line with TS_standout_mode */
1486 Down = 0;
1489 /* Special handling for certain terminal types known to need it */
1491 if (!strcmp (terminal_type, "supdup"))
1493 memory_below_frame = 1;
1494 Wcm.cm_losewrap = 1;
1496 if (!strncmp (terminal_type, "c10", 3)
1497 || !strcmp (terminal_type, "perq"))
1499 /* Supply a makeshift :wi string.
1500 This string is not valid in general since it works only
1501 for windows starting at the upper left corner;
1502 but that is all Emacs uses.
1504 This string works only if the frame is using
1505 the top of the video memory, because addressing is memory-relative.
1506 So first check the :ti string to see if that is true.
1508 It would be simpler if the :wi string could go in the termcap
1509 entry, but it can't because it is not fully valid.
1510 If it were in the termcap entry, it would confuse other programs. */
1511 if (!TS_set_window)
1513 p = TS_termcap_modes;
1514 while (*p && strcmp (p, "\033v "))
1515 p++;
1516 if (*p)
1517 TS_set_window = "\033v%C %C %C %C ";
1519 /* Termcap entry often fails to have :in: flag */
1520 must_write_spaces = 1;
1521 /* :ti string typically fails to have \E^G! in it */
1522 /* This limits scope of insert-char to one line. */
1523 strcpy (area, TS_termcap_modes);
1524 strcat (area, "\033\007!");
1525 TS_termcap_modes = area;
1526 area += strlen (area) + 1;
1527 p = AbsPosition;
1528 /* Change all %+ parameters to %C, to handle
1529 values above 96 correctly for the C100. */
1530 while (*p)
1532 if (p[0] == '%' && p[1] == '+')
1533 p[1] = 'C';
1534 p++;
1538 FrameRows = FRAME_HEIGHT (selected_frame);
1539 FrameCols = FRAME_WIDTH (selected_frame);
1540 specified_window = FRAME_HEIGHT (selected_frame);
1542 if (Wcm_init () == -1) /* can't do cursor motion */
1543 #ifdef VMS
1544 fatal ("Terminal type \"%s\" is not powerful enough to run Emacs.\n\
1545 It lacks the ability to position the cursor.\n\
1546 If that is not the actual type of terminal you have, use either the\n\
1547 DCL command `SET TERMINAL/DEVICE= ...' for DEC-compatible terminals,\n\
1548 or `define EMACS_TERM \"terminal type\"' for non-DEC terminals.\n",
1549 terminal_type);
1550 #else
1551 fatal ("Terminal type \"%s\" is not powerful enough to run Emacs.\n\
1552 It lacks the ability to position the cursor.\n\
1553 If that is not the actual type of terminal you have,\n\
1554 use the C-shell command `setenv TERM ...' to specify the correct type.\n\
1555 It may be necessary to do `unsetenv TERMCAP' as well.\n",
1556 terminal_type);
1557 #endif
1558 if (FRAME_HEIGHT (selected_frame) <= 0
1559 || FRAME_WIDTH (selected_frame) <= 0)
1560 fatal ("The frame size has not been specified.");
1562 delete_in_insert_mode
1563 = TS_delete_mode && TS_insert_mode
1564 && !strcmp (TS_delete_mode, TS_insert_mode);
1566 se_is_so = (TS_standout_mode
1567 && TS_end_standout_mode
1568 && !strcmp (TS_standout_mode, TS_end_standout_mode));
1570 /* Remove width of standout marker from usable width of line */
1571 if (TN_standout_width > 0)
1572 FRAME_WIDTH (selected_frame) -= TN_standout_width;
1574 UseTabs = tabs_safe_p () && TabWidth == 8;
1576 scroll_region_ok
1577 = (Wcm.cm_abs
1578 && (TS_set_window || TS_set_scroll_region || TS_set_scroll_region_1));
1580 line_ins_del_ok = (((TS_ins_line || TS_ins_multi_lines)
1581 && (TS_del_line || TS_del_multi_lines))
1582 || (scroll_region_ok && TS_fwd_scroll && TS_rev_scroll));
1584 char_ins_del_ok = ((TS_ins_char || TS_insert_mode
1585 || TS_pad_inserted_char || TS_ins_multi_chars)
1586 && (TS_del_char || TS_del_multi_chars));
1588 fast_clear_end_of_line = TS_clr_line != 0;
1590 init_baud_rate ();
1591 if (read_socket_hook) /* Baudrate is somewhat */
1592 /* meaningless in this case */
1593 baud_rate = 9600;
1595 FRAME_CAN_HAVE_SCROLL_BARS (selected_frame) = 0;
1596 FRAME_HAS_VERTICAL_SCROLL_BARS (selected_frame) = 0;
1599 /* VARARGS 1 */
1600 fatal (str, arg1, arg2)
1601 char *str, *arg1, *arg2;
1603 fprintf (stderr, "emacs: ");
1604 fprintf (stderr, str, arg1, arg2);
1605 fflush (stderr);
1606 exit (1);