home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / emacs-19.28-src.tgz / tar.out / fsf / emacs / src / term.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  48KB  |  1,688 lines

  1. /* terminal control module for terminals described by TERMCAP
  2.    Copyright (C) 1985, 1986, 1987, 1993, 1994 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU Emacs.
  5.  
  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.
  10.  
  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.
  15.  
  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.  */
  19.  
  20.  
  21. #include <config.h>
  22. #include <stdio.h>
  23. #include <ctype.h>
  24. #include "termchar.h"
  25. #include "termopts.h"
  26. #include "cm.h"
  27. #include "lisp.h"
  28. #include "frame.h"
  29. #include "disptab.h"
  30. #include "termhooks.h"
  31. #include "keyboard.h"
  32.  
  33. #define max(a, b) ((a) > (b) ? (a) : (b))
  34. #define min(a, b) ((a) < (b) ? (a) : (b))
  35.  
  36. #define OUTPUT(a) tputs (a, FRAME_HEIGHT (selected_frame) - curY, cmputc)
  37. #define OUTPUT1(a) tputs (a, 1, cmputc)
  38. #define OUTPUTL(a, lines) tputs (a, lines, cmputc)
  39. #define OUTPUT_IF(a) { if (a) tputs (a, FRAME_HEIGHT (selected_frame) - curY, cmputc); }
  40. #define OUTPUT1_IF(a) { if (a) tputs (a, 1, cmputc); }
  41.  
  42. /* Terminal characteristics that higher levels want to look at.
  43.    These are all extern'd in termchar.h */
  44.  
  45. int must_write_spaces;        /* Nonzero means spaces in the text
  46.                    must actually be output; can't just skip
  47.                    over some columns to leave them blank.  */
  48. int min_padding_speed;        /* Speed below which no padding necessary */
  49.  
  50. int line_ins_del_ok;        /* Terminal can insert and delete lines */
  51. int char_ins_del_ok;        /* Terminal can insert and delete chars */
  52. int scroll_region_ok;        /* Terminal supports setting the
  53.                    scroll window */
  54. int memory_below_frame;        /* Terminal remembers lines
  55.                    scrolled off bottom */
  56. int fast_clear_end_of_line;    /* Terminal has a `ce' string */
  57.  
  58. int dont_calculate_costs;    /* Nonzero means don't bother computing */
  59.                 /* various cost tables; we won't use them.  */
  60.  
  61. /* Nonzero means no need to redraw the entire frame on resuming
  62.    a suspended Emacs.  This is useful on terminals with multiple pages,
  63.    where one page is used for Emacs and another for all else. */
  64. int no_redraw_on_reenter;
  65.  
  66. /* Hook functions that you can set to snap out the functions in this file.
  67.    These are all extern'd in termhooks.h  */
  68.  
  69. int (*cursor_to_hook) ();
  70. int (*raw_cursor_to_hook) ();
  71.  
  72. int (*clear_to_end_hook) ();
  73. int (*clear_frame_hook) ();
  74. int (*clear_end_of_line_hook) ();
  75.  
  76. int (*ins_del_lines_hook) ();
  77.  
  78. int (*change_line_highlight_hook) ();
  79. int (*reassert_line_highlight_hook) ();
  80.  
  81. int (*insert_glyphs_hook) ();
  82. int (*write_glyphs_hook) ();
  83. int (*delete_glyphs_hook) ();
  84.  
  85. int (*ring_bell_hook) ();
  86.  
  87. int (*reset_terminal_modes_hook) ();
  88. int (*set_terminal_modes_hook) ();
  89. int (*update_begin_hook) ();
  90. int (*update_end_hook) ();
  91. int (*set_terminal_window_hook) ();
  92.  
  93. int (*read_socket_hook) ();
  94.  
  95. int (*frame_up_to_date_hook) ();
  96.  
  97. /* Return the current position of the mouse.
  98.  
  99.    Set *f to the frame the mouse is in, or zero if the mouse is in no
  100.    Emacs frame.  If it is set to zero, all the other arguments are
  101.    garbage.
  102.  
  103.    If the motion started in a scroll bar, set *bar_window to the
  104.    scroll bar's window, *part to the part the mouse is currently over,
  105.    *x to the position of the mouse along the scroll bar, and *y to the
  106.    overall length of the scroll bar.
  107.  
  108.    Otherwise, set *bar_window to Qnil, and *x and *y to the column and
  109.    row of the character cell the mouse is over.
  110.  
  111.    Set *time to the time the mouse was at the returned position.
  112.  
  113.    This should clear mouse_moved until the next motion
  114.    event arrives.  */
  115. void (*mouse_position_hook) ( /* FRAME_PTR *f,
  116.                  Lisp_Object *bar_window,
  117.                  enum scroll_bar_part *part,
  118.                  Lisp_Object *x,
  119.                  Lisp_Object *y,
  120.                  unsigned long *time */ );
  121.  
  122. /* When reading from a minibuffer in a different frame, Emacs wants
  123.    to shift the highlight from the selected frame to the minibuffer's
  124.    frame; under X, this means it lies about where the focus is.
  125.    This hook tells the window system code to re-decide where to put
  126.    the highlight.  */
  127. void (*frame_rehighlight_hook) ( /* FRAME_PTR f */ );
  128.  
  129. /* If we're displaying frames using a window system that can stack
  130.    frames on top of each other, this hook allows you to bring a frame
  131.    to the front, or bury it behind all the other windows.  If this
  132.    hook is zero, that means the device we're displaying on doesn't
  133.    support overlapping frames, so there's no need to raise or lower
  134.    anything.
  135.  
  136.    If RAISE is non-zero, F is brought to the front, before all other
  137.    windows.  If RAISE is zero, F is sent to the back, behind all other
  138.    windows.  */
  139. void (*frame_raise_lower_hook) ( /* FRAME_PTR f, int raise */ );
  140.  
  141. /* Set the vertical scroll bar for WINDOW to have its upper left corner
  142.    at (TOP, LEFT), and be LENGTH rows high.  Set its handle to
  143.    indicate that we are displaying PORTION characters out of a total
  144.    of WHOLE characters, starting at POSITION.  If WINDOW doesn't yet
  145.    have a scroll bar, create one for it.  */
  146. void (*set_vertical_scroll_bar_hook)
  147.      ( /* struct window *window,
  148.       int portion, int whole, int position */ );
  149.  
  150.  
  151. /* The following three hooks are used when we're doing a thorough
  152.    redisplay of the frame.  We don't explicitly know which scroll bars
  153.    are going to be deleted, because keeping track of when windows go
  154.    away is a real pain - can you say set-window-configuration?
  155.    Instead, we just assert at the beginning of redisplay that *all*
  156.    scroll bars are to be removed, and then save scroll bars from the
  157.    firey pit when we actually redisplay their window.  */
  158.  
  159. /* Arrange for all scroll bars on FRAME to be removed at the next call
  160.    to `*judge_scroll_bars_hook'.  A scroll bar may be spared if
  161.    `*redeem_scroll_bar_hook' is applied to its window before the judgement. 
  162.  
  163.    This should be applied to each frame each time its window tree is
  164.    redisplayed, even if it is not displaying scroll bars at the moment;
  165.    if the HAS_SCROLL_BARS flag has just been turned off, only calling
  166.    this and the judge_scroll_bars_hook will get rid of them.
  167.  
  168.    If non-zero, this hook should be safe to apply to any frame,
  169.    whether or not it can support scroll bars, and whether or not it is
  170.    currently displaying them.  */
  171. void (*condemn_scroll_bars_hook)( /* FRAME_PTR *frame */ );
  172.  
  173. /* Unmark WINDOW's scroll bar for deletion in this judgement cycle.
  174.    Note that it's okay to redeem a scroll bar that is not condemned.  */
  175. void (*redeem_scroll_bar_hook)( /* struct window *window */ );
  176.  
  177. /* Remove all scroll bars on FRAME that haven't been saved since the
  178.    last call to `*condemn_scroll_bars_hook'.  
  179.  
  180.    This should be applied to each frame after each time its window
  181.    tree is redisplayed, even if it is not displaying scroll bars at the
  182.    moment; if the HAS_SCROLL_BARS flag has just been turned off, only
  183.    calling this and condemn_scroll_bars_hook will get rid of them.
  184.  
  185.    If non-zero, this hook should be safe to apply to any frame,
  186.    whether or not it can support scroll bars, and whether or not it is
  187.    currently displaying them.  */
  188. void (*judge_scroll_bars_hook)( /* FRAME_PTR *FRAME */ );
  189.  
  190.  
  191. /* Strings, numbers and flags taken from the termcap entry.  */
  192.  
  193. char *TS_ins_line;        /* termcap "al" */
  194. char *TS_ins_multi_lines;    /* "AL" (one parameter, # lines to insert) */
  195. char *TS_bell;            /* "bl" */
  196. char *TS_clr_to_bottom;        /* "cd" */
  197. char *TS_clr_line;        /* "ce", clear to end of line */
  198. char *TS_clr_frame;        /* "cl" */
  199. char *TS_set_scroll_region;    /* "cs" (2 params, first line and last line) */
  200. char *TS_set_scroll_region_1;   /* "cS" (4 params: total lines,
  201.                    lines above scroll region, lines below it,
  202.                    total lines again) */
  203. char *TS_del_char;        /* "dc" */
  204. char *TS_del_multi_chars;    /* "DC" (one parameter, # chars to delete) */
  205. char *TS_del_line;        /* "dl" */
  206. char *TS_del_multi_lines;    /* "DL" (one parameter, # lines to delete) */
  207. char *TS_delete_mode;        /* "dm", enter character-delete mode */
  208. char *TS_end_delete_mode;    /* "ed", leave character-delete mode */
  209. char *TS_end_insert_mode;    /* "ei", leave character-insert mode */
  210. char *TS_ins_char;        /* "ic" */
  211. char *TS_ins_multi_chars;    /* "IC" (one parameter, # chars to insert) */
  212. char *TS_insert_mode;        /* "im", enter character-insert mode */
  213. char *TS_pad_inserted_char;    /* "ip".  Just padding, no commands.  */
  214. char *TS_end_keypad_mode;    /* "ke" */
  215. char *TS_keypad_mode;        /* "ks" */
  216. char *TS_pad_char;        /* "pc", char to use as padding */
  217. char *TS_repeat;        /* "rp" (2 params, # times to repeat
  218.                    and character to be repeated) */
  219. char *TS_end_standout_mode;    /* "se" */
  220. char *TS_fwd_scroll;        /* "sf" */
  221. char *TS_standout_mode;        /* "so" */
  222. char *TS_rev_scroll;        /* "sr" */
  223. char *TS_end_termcap_modes;    /* "te" */
  224. char *TS_termcap_modes;        /* "ti" */
  225. char *TS_visible_bell;        /* "vb" */
  226. char *TS_end_visual_mode;    /* "ve" */
  227. char *TS_visual_mode;        /* "vi" */
  228. char *TS_set_window;        /* "wi" (4 params, start and end of window,
  229.                    each as vpos and hpos) */
  230.  
  231. int TF_hazeltine;    /* termcap hz flag. */
  232. int TF_insmode_motion;    /* termcap mi flag: can move while in insert mode. */
  233. int TF_standout_motion;    /* termcap mi flag: can move while in standout mode. */
  234. int TF_underscore;    /* termcap ul flag: _ underlines if overstruck on
  235.                nonblank position.  Must clear before writing _.  */
  236. int TF_teleray;        /* termcap xt flag: many weird consequences.
  237.                For t1061. */
  238.  
  239. int TF_xs;        /* Nonzero for "xs".  If set together with
  240.                TN_standout_width == 0, it means don't bother
  241.                to write any end-standout cookies.  */
  242.  
  243. int TN_standout_width;    /* termcap sg number: width occupied by standout
  244.                markers */
  245.  
  246. static int RPov;    /* # chars to start a TS_repeat */
  247.  
  248. static int delete_in_insert_mode;    /* delete mode == insert mode */
  249.  
  250. static int se_is_so;    /* 1 if same string both enters and leaves
  251.                standout mode */
  252.  
  253. /* internal state */
  254.  
  255. /* Number of chars of space used for standout marker at beginning of line,
  256.    or'd with 0100.  Zero if no standout marker at all.
  257.  
  258.    Used IFF TN_standout_width >= 0. */
  259.  
  260. #ifdef AMIGA /* CHFIXME: check */
  261. char *chars_wasted;
  262. char *copybuf;
  263. #define FAR far /* force object into pure section */
  264. #else
  265. static char *chars_wasted;
  266. static char *copybuf;
  267. #define FAR
  268. #endif
  269.  
  270. /* nonzero means supposed to write text in standout mode.  */
  271. int standout_requested;
  272.  
  273. int insert_mode;            /* Nonzero when in insert mode.  */
  274. int standout_mode;            /* Nonzero when in standout mode.  */
  275.  
  276. /* Size of window specified by higher levels.
  277.    This is the number of lines, from the top of frame downwards,
  278.    which can participate in insert-line/delete-line operations.
  279.  
  280.    Effectively it excludes the bottom frame_height - specified_window_size
  281.    lines from those operations.  */
  282.  
  283. int specified_window;
  284.  
  285. /* Frame currently being redisplayed; 0 if not currently redisplaying.
  286.    (Direct output does not count).  */
  287.  
  288. FRAME_PTR updating_frame;
  289.  
  290. /* Provided for lisp packages.  */
  291. static int system_uses_terminfo;
  292.  
  293. char *tparam ();
  294.  
  295. extern char *tgetstr ();
  296.  
  297. ring_bell ()
  298. {
  299.   if (! FRAME_TERMCAP_P (selected_frame))
  300.     {
  301.       (*ring_bell_hook) ();
  302.       return;
  303.     }
  304.   OUTPUT (TS_visible_bell && visible_bell ? TS_visible_bell : TS_bell);
  305. }
  306.  
  307. set_terminal_modes ()
  308. {
  309.   if (! FRAME_TERMCAP_P (selected_frame))
  310.     {
  311.       (*set_terminal_modes_hook) ();
  312.       return;
  313.     }
  314.   OUTPUT_IF (TS_termcap_modes);
  315.   OUTPUT_IF (TS_visual_mode);
  316.   OUTPUT_IF (TS_keypad_mode);
  317.   losecursor ();
  318. }
  319.  
  320. reset_terminal_modes ()
  321. {
  322.   if (! FRAME_TERMCAP_P (selected_frame))
  323.     {
  324.       (*reset_terminal_modes_hook) ();
  325.       return;
  326.     }
  327.   if (TN_standout_width < 0)
  328.     turn_off_highlight ();
  329.   turn_off_insert ();
  330.   OUTPUT_IF (TS_end_keypad_mode);
  331.   OUTPUT_IF (TS_end_visual_mode);
  332.   OUTPUT_IF (TS_end_termcap_modes);
  333.   /* Output raw CR so kernel can track the cursor hpos.  */
  334.   /* But on magic-cookie terminals this can erase an end-standout marker and
  335.      cause the rest of the frame to be in standout, so move down first.  */
  336.   if (TN_standout_width >= 0)
  337.     cmputc ('\n');
  338.   cmputc ('\r');
  339. }
  340.  
  341. update_begin (f)
  342.      FRAME_PTR f;
  343. {
  344.   updating_frame = f;
  345.   if (! FRAME_TERMCAP_P (updating_frame))
  346.     (*update_begin_hook) (f);
  347. }
  348.  
  349. update_end (f)
  350.      FRAME_PTR f;
  351. {
  352.   if (! FRAME_TERMCAP_P (updating_frame))
  353.     {
  354.       (*update_end_hook) (f);
  355.       updating_frame = 0;
  356.       return;
  357.     }
  358.   turn_off_insert ();
  359.   background_highlight ();
  360.   standout_requested = 0;
  361.   updating_frame = 0;
  362. }
  363.  
  364. set_terminal_window (size)
  365.      int size;
  366. {
  367.   if (! FRAME_TERMCAP_P (updating_frame))
  368.     {
  369.       (*set_terminal_window_hook) (size);
  370.       return;
  371.     }
  372.   specified_window = size ? size : FRAME_HEIGHT (selected_frame);
  373.   if (!scroll_region_ok)
  374.     return;
  375.   set_scroll_region (0, specified_window);
  376. }
  377.  
  378. set_scroll_region (start, stop)
  379.      int start, stop;
  380. {
  381.   char *buf;
  382.   if (TS_set_scroll_region)
  383.     {
  384.       buf = tparam (TS_set_scroll_region, 0, 0, start, stop - 1);
  385.     }
  386.   else if (TS_set_scroll_region_1)
  387.     {
  388.       buf = tparam (TS_set_scroll_region_1, 0, 0,
  389.             FRAME_HEIGHT (selected_frame), start,
  390.             FRAME_HEIGHT (selected_frame) - stop,
  391.             FRAME_HEIGHT (selected_frame));
  392.     }
  393.   else
  394.     {
  395.       buf = tparam (TS_set_window, 0, 0, start, 0, stop, FRAME_WIDTH (selected_frame));
  396.     }
  397.   OUTPUT (buf);
  398.   xfree (buf);
  399.   losecursor ();
  400. }
  401.  
  402. turn_on_insert ()
  403. {
  404.   if (!insert_mode)
  405.     OUTPUT (TS_insert_mode);
  406.   insert_mode = 1;
  407. }
  408.  
  409. turn_off_insert ()
  410. {
  411.   if (insert_mode)
  412.     OUTPUT (TS_end_insert_mode);
  413.   insert_mode = 0;
  414. }
  415.  
  416. /* Handle highlighting when TN_standout_width (termcap sg) is not specified.
  417.    In these terminals, output is affected by the value of standout
  418.    mode when the output is written.
  419.  
  420.    These functions are called on all terminals, but do nothing
  421.    on terminals whose standout mode does not work that way.  */
  422.  
  423. turn_off_highlight ()
  424. {
  425.   if (TN_standout_width < 0)
  426.     {
  427.       if (standout_mode)
  428.     OUTPUT_IF (TS_end_standout_mode);
  429.       standout_mode = 0;
  430.     }
  431. }
  432.  
  433. turn_on_highlight ()
  434. {
  435.   if (TN_standout_width < 0)
  436.     {
  437.       if (!standout_mode)
  438.     OUTPUT_IF (TS_standout_mode);
  439.       standout_mode = 1;
  440.     }
  441. }
  442.  
  443. /* Set standout mode to the state it should be in for
  444.    empty space inside windows.  What this is,
  445.    depends on the user option inverse-video.  */
  446.  
  447. background_highlight ()
  448. {
  449.   if (TN_standout_width >= 0)
  450.     return;
  451.   if (inverse_video)
  452.     turn_on_highlight ();
  453.   else
  454.     turn_off_highlight ();
  455. }
  456.  
  457. /* Set standout mode to the mode specified for the text to be output.  */
  458.  
  459. static
  460. highlight_if_desired ()
  461. {
  462.   if (TN_standout_width >= 0)
  463.     return;
  464.   if (!inverse_video == !standout_requested)
  465.     turn_off_highlight ();
  466.   else
  467.     turn_on_highlight ();
  468. }
  469.  
  470. /* Handle standout mode for terminals in which TN_standout_width >= 0.
  471.    On these terminals, standout is controlled by markers that
  472.    live inside the terminal's memory.  TN_standout_width is the width
  473.    that the marker occupies in memory.  Standout runs from the marker
  474.    to the end of the line on some terminals, or to the next
  475.    turn-off-standout marker (TS_end_standout_mode) string
  476.    on other terminals.  */
  477.  
  478. /* Write a standout marker or end-standout marker at the front of the line
  479.    at vertical position vpos.  */
  480.  
  481. write_standout_marker (flag, vpos)
  482.      int flag, vpos;
  483. {
  484.   if (flag || (TS_end_standout_mode && !TF_teleray && !se_is_so
  485.            && !(TF_xs && TN_standout_width == 0)))
  486.     {
  487.       cmgoto (vpos, 0);
  488.       cmplus (TN_standout_width);
  489.       OUTPUT (flag ? TS_standout_mode : TS_end_standout_mode);
  490.       chars_wasted[curY] = TN_standout_width | 0100;
  491.     }
  492. }
  493.  
  494. /* External interface to control of standout mode.
  495.    Call this when about to modify line at position VPOS
  496.    and not change whether it is highlighted.  */
  497.  
  498. reassert_line_highlight (highlight, vpos)
  499.      int highlight;
  500.      int vpos;
  501. {
  502.   if (! FRAME_TERMCAP_P ((updating_frame ? updating_frame : selected_frame)))
  503.     {
  504.       (*reassert_line_highlight_hook) (highlight, vpos);
  505.       return;
  506.     }
  507.   if (TN_standout_width < 0)
  508.     /* Handle terminals where standout takes affect at output time */
  509.     standout_requested = highlight;
  510.   else
  511.     {
  512. #ifdef AMIGA
  513.       assert(chars_wasted!=NULL);
  514. #endif
  515.       if (chars_wasted[vpos] == 0)
  516.     /* For terminals with standout markers, write one on this line
  517.        if there isn't one already.  */
  518.       write_standout_marker (highlight, vpos);
  519.     }
  520. }
  521.  
  522. /* Call this when about to modify line at position VPOS
  523.    and change whether it is highlighted.  */
  524.  
  525. change_line_highlight (new_highlight, vpos, first_unused_hpos)
  526.      int new_highlight, vpos, first_unused_hpos;
  527. {
  528.   standout_requested = new_highlight;
  529.   if (! FRAME_TERMCAP_P (updating_frame))
  530.     {
  531.       (*change_line_highlight_hook) (new_highlight, vpos, first_unused_hpos);
  532.       return;
  533.     }
  534.  
  535.   cursor_to (vpos, 0);
  536.  
  537.   if (TN_standout_width < 0)
  538.     background_highlight ();
  539.   /* If line starts with a marker, delete the marker */
  540.   else if (TS_clr_line && chars_wasted[curY])
  541.     {
  542.       turn_off_insert ();
  543.       /* On Teleray, make sure to erase the SO marker.  */
  544.       if (TF_teleray)
  545.     {
  546.       cmgoto (curY - 1, FRAME_WIDTH (selected_frame) - 4);
  547.       OUTPUT ("\033S");
  548.       curY++;        /* ESC S moves to next line where the TS_standout_mode was */
  549.       curX = 0;
  550.     }
  551.       else
  552.     cmgoto (curY, 0);    /* reposition to kill standout marker */
  553.     }
  554.   clear_end_of_line_raw (first_unused_hpos);
  555.   reassert_line_highlight (new_highlight, curY);
  556. }
  557.  
  558.  
  559. /* Move to absolute position, specified origin 0 */
  560.  
  561. cursor_to (row, col)
  562.      int row, col;
  563. {
  564.   if (! FRAME_TERMCAP_P ((updating_frame
  565.                 ? updating_frame
  566.                 : selected_frame))
  567.       && cursor_to_hook)
  568.     {
  569.       (*cursor_to_hook) (row, col);
  570.       return;
  571.     }
  572.  
  573.   if (chars_wasted == 0)
  574.     chars_wasted = (char *) xmalloc (FRAME_HEIGHT (frame));
  575.  
  576.   col += chars_wasted[row] & 077;
  577.   if (curY == row && curX == col)
  578.     return;
  579.   if (!TF_standout_motion)
  580.     background_highlight ();
  581.   if (!TF_insmode_motion)
  582.     turn_off_insert ();
  583.   cmgoto (row, col);
  584. }
  585.  
  586. /* Similar but don't take any account of the wasted characters.  */
  587.  
  588. raw_cursor_to (row, col)
  589.      int row, col;
  590. {
  591.   if (! FRAME_TERMCAP_P ((updating_frame ? updating_frame : selected_frame)))
  592.     {
  593.       (*raw_cursor_to_hook) (row, col);
  594.       return;
  595.     }
  596.   if (curY == row && curX == col)
  597.     return;
  598.   if (!TF_standout_motion)
  599.     background_highlight ();
  600.   if (!TF_insmode_motion)
  601.     turn_off_insert ();
  602.   cmgoto (row, col);
  603. }
  604.  
  605. /* Erase operations */
  606.  
  607. /* clear from cursor to end of frame */
  608. clear_to_end ()
  609. {
  610.   register int i;
  611.  
  612.   if (clear_to_end_hook && FRAME_TERMCAP_P (updating_frame))
  613.     {
  614.       (*clear_to_end_hook) ();
  615.       return;
  616.     }
  617.   if (TS_clr_to_bottom)
  618.     {
  619.       background_highlight ();
  620.       OUTPUT (TS_clr_to_bottom);
  621.       bzero (chars_wasted + curY, FRAME_HEIGHT (selected_frame) - curY);
  622.     }
  623.   else
  624.     {
  625.       for (i = curY; i < FRAME_HEIGHT (selected_frame); i++)
  626.     {
  627.       cursor_to (i, 0);
  628.       clear_end_of_line_raw (FRAME_WIDTH (selected_frame));
  629.     }
  630.     }
  631. }
  632.  
  633. /* Clear entire frame */
  634.  
  635. clear_frame ()
  636. {
  637.   if (clear_frame_hook
  638.       && ! FRAME_TERMCAP_P ((updating_frame ? updating_frame : selected_frame)))
  639.     {
  640.       (*clear_frame_hook) ();
  641.       return;
  642.     }
  643.   if (TS_clr_frame)
  644.     {
  645.       background_highlight ();
  646.       OUTPUT (TS_clr_frame);
  647.       bzero (chars_wasted, FRAME_HEIGHT (selected_frame));
  648.       cmat (0, 0);
  649.     }
  650.   else
  651.     {
  652.       cursor_to (0, 0);
  653.       clear_to_end ();
  654.     }
  655. }
  656.  
  657. /* Clear to end of line, but do not clear any standout marker.
  658.    Assumes that the cursor is positioned at a character of real text,
  659.    which implies it cannot be before a standout marker
  660.    unless the marker has zero width.
  661.  
  662.    Note that the cursor may be moved.  */
  663.  
  664. clear_end_of_line (first_unused_hpos)
  665.      int first_unused_hpos;
  666. {
  667.   static GLYPH buf = SPACEGLYPH;
  668.   if (FRAME_TERMCAP_P (selected_frame)
  669.       && TN_standout_width == 0 && curX == 0 && chars_wasted[curY] != 0)
  670.     write_glyphs (&buf, 1);
  671.   clear_end_of_line_raw (first_unused_hpos);
  672. }
  673.  
  674. /* Clear from cursor to end of line.
  675.    Assume that the line is already clear starting at column first_unused_hpos.
  676.    If the cursor is at a standout marker, erase the marker.
  677.  
  678.    Note that the cursor may be moved, on terminals lacking a `ce' string.  */
  679.  
  680. clear_end_of_line_raw (first_unused_hpos)
  681.      int first_unused_hpos;
  682. {
  683.   register int i;
  684.  
  685.   if (clear_end_of_line_hook
  686.       && ! FRAME_TERMCAP_P ((updating_frame
  687.                    ? updating_frame
  688.                    : selected_frame)))
  689.     {
  690.       (*clear_end_of_line_hook) (first_unused_hpos);
  691.       return;
  692.     }
  693.  
  694.   first_unused_hpos += chars_wasted[curY] & 077;
  695.   if (curX >= first_unused_hpos)
  696.     return;
  697.   /* Notice if we are erasing a magic cookie */
  698.   if (curX == 0)
  699.     chars_wasted[curY] = 0;
  700.   background_highlight ();
  701.   if (TS_clr_line)
  702.     {
  703.       OUTPUT1 (TS_clr_line);
  704.     }
  705.   else
  706.     {            /* have to do it the hard way */
  707.       turn_off_insert ();
  708.  
  709.       /* Do not write in last row last col with Autowrap on. */
  710.       if (AutoWrap && curY == FRAME_HEIGHT (selected_frame) - 1
  711.       && first_unused_hpos == FRAME_WIDTH (selected_frame))
  712.     first_unused_hpos--;
  713.  
  714.       for (i = curX; i < first_unused_hpos; i++)
  715.     {
  716.       if (termscript)
  717.         fputc (' ', termscript);
  718.       putchar (' ');
  719.     }
  720.       cmplus (first_unused_hpos - curX);
  721.     }
  722. }
  723.  
  724.  
  725. write_glyphs (string, len)
  726.      register GLYPH *string;
  727.      register int len;
  728. {
  729.   register GLYPH g;
  730.   register int tlen = GLYPH_TABLE_LENGTH;
  731.   register Lisp_Object *tbase = GLYPH_TABLE_BASE;
  732.  
  733.   if (write_glyphs_hook
  734.       && ! FRAME_TERMCAP_P ((updating_frame ? updating_frame : selected_frame)))
  735.     {
  736.       (*write_glyphs_hook) (string, len);
  737.       return;
  738.     }
  739.  
  740.   highlight_if_desired ();
  741.   turn_off_insert ();
  742.  
  743.   /* Don't dare write in last column of bottom line, if AutoWrap,
  744.      since that would scroll the whole frame on some terminals.  */
  745.  
  746.   if (AutoWrap
  747.       && curY + 1 == FRAME_HEIGHT (selected_frame)
  748.       && (curX + len - (chars_wasted[curY] & 077)
  749.       == FRAME_WIDTH (selected_frame)))
  750.     len --;
  751.  
  752.   cmplus (len);
  753.   while (--len >= 0)
  754.     {
  755.       g = *string++;
  756.       /* Check quickly for G beyond length of table.
  757.      That implies it isn't an alias and is simple.  */
  758.       if (g >= tlen)
  759.     {
  760.     simple:
  761.       putc (g & 0xff, stdout);
  762.       if (ferror (stdout))
  763.         clearerr (stdout);
  764.       if (termscript)
  765.         putc (g & 0xff, termscript);
  766.     }
  767.       else
  768.     {
  769.       /* G has an entry in Vglyph_table,
  770.          so process any alias and then test for simpleness.  */
  771.       while (GLYPH_ALIAS_P (tbase, tlen, g))
  772.         g = GLYPH_ALIAS (tbase, g);
  773.       if (GLYPH_SIMPLE_P (tbase, tlen, g))
  774.         goto simple;
  775.       else
  776.         {
  777.           /* Here if G (or its definition as an alias) is not simple.  */
  778.           fwrite (GLYPH_STRING (tbase, g), 1, GLYPH_LENGTH (tbase, g),
  779.               stdout);
  780.           if (ferror (stdout))
  781.         clearerr (stdout);
  782.           if (termscript)
  783.         fwrite (GLYPH_STRING (tbase, g), 1, GLYPH_LENGTH (tbase, g),
  784.             termscript);
  785.         }
  786.     }
  787.     }
  788. }
  789.  
  790. /* If start is zero, insert blanks instead of a string at start */
  791.  
  792. insert_glyphs (start, len)
  793.      register GLYPH *start;
  794.      register int len;
  795. {
  796.   char *buf;
  797.   register GLYPH g;
  798.   register int tlen = GLYPH_TABLE_LENGTH;
  799.   register Lisp_Object *tbase = GLYPH_TABLE_BASE;
  800.  
  801.   if (insert_glyphs_hook && ! FRAME_TERMCAP_P (updating_frame))
  802.     {
  803.       (*insert_glyphs_hook) (start, len);
  804.       return;
  805.     }
  806.   highlight_if_desired ();
  807.  
  808.   if (TS_ins_multi_chars)
  809.     {
  810.       buf = tparam (TS_ins_multi_chars, 0, 0, len);
  811.       OUTPUT1 (buf);
  812.       xfree (buf);
  813.       if (start)
  814.     write_glyphs (start, len);
  815.       return;
  816.     }
  817.  
  818.   turn_on_insert ();
  819.   cmplus (len);
  820.   while (--len >= 0)
  821.     {
  822.       OUTPUT1_IF (TS_ins_char);
  823.       if (!start)
  824.     g = SPACEGLYPH;
  825.       else
  826.     g = *start++;
  827.  
  828.       if (GLYPH_SIMPLE_P (tbase, tlen, g))
  829.     {
  830.       putc (g & 0xff, stdout);
  831.       if (ferror (stdout))
  832.         clearerr (stdout);
  833.       if (termscript)
  834.         putc (g & 0xff, termscript);
  835.     }
  836.       else
  837.     {
  838.       fwrite (GLYPH_STRING (tbase, g), 1, GLYPH_LENGTH (tbase, g), stdout);
  839.       if (ferror (stdout))
  840.         clearerr (stdout);
  841.       if (termscript)
  842.         fwrite (GLYPH_STRING (tbase, g), 1, GLYPH_LENGTH (tbase, g),
  843.             termscript);
  844.     }
  845.  
  846.     OUTPUT1_IF (TS_pad_inserted_char);
  847.       }
  848. }
  849.  
  850. delete_glyphs (n)
  851.      register int n;
  852. {
  853.   char *buf;
  854.   register int i;
  855.  
  856.   if (delete_glyphs_hook && ! FRAME_TERMCAP_P (updating_frame))
  857.     {
  858.       (*delete_glyphs_hook) (n);
  859.       return;
  860.     }
  861.  
  862.   if (delete_in_insert_mode)
  863.     {
  864.       turn_on_insert ();
  865.     }
  866.   else
  867.     {
  868.       turn_off_insert ();
  869.       OUTPUT_IF (TS_delete_mode);
  870.     }
  871.  
  872.   if (TS_del_multi_chars)
  873.     {
  874.       buf = tparam (TS_del_multi_chars, 0, 0, n);
  875.       OUTPUT1 (buf);
  876.       xfree (buf);
  877.     }
  878.   else
  879.     for (i = 0; i < n; i++)
  880.       OUTPUT1 (TS_del_char);
  881.   if (!delete_in_insert_mode)
  882.     OUTPUT_IF (TS_end_delete_mode);
  883. }
  884.  
  885. /* Insert N lines at vpos VPOS.  If N is negative, delete -N lines.  */
  886.  
  887. ins_del_lines (vpos, n)
  888.      int vpos, n;
  889. {
  890.   char *multi = n > 0 ? TS_ins_multi_lines : TS_del_multi_lines;
  891.   char *single = n > 0 ? TS_ins_line : TS_del_line;
  892.   char *scroll = n > 0 ? TS_rev_scroll : TS_fwd_scroll;
  893.  
  894.   register int i = n > 0 ? n : -n;
  895.   register char *buf;
  896.  
  897.   if (ins_del_lines_hook && ! FRAME_TERMCAP_P (updating_frame))
  898.     {
  899.       (*ins_del_lines_hook) (vpos, n);
  900.       return;
  901.     }
  902.  
  903.   /* If the lines below the insertion are being pushed
  904.      into the end of the window, this is the same as clearing;
  905.      and we know the lines are already clear, since the matching
  906.      deletion has already been done.  So can ignore this.  */
  907.   /* If the lines below the deletion are blank lines coming
  908.      out of the end of the window, don't bother,
  909.      as there will be a matching inslines later that will flush them. */
  910.   if (scroll_region_ok && vpos + i >= specified_window)
  911.     return;
  912.   if (!memory_below_frame && vpos + i >= FRAME_HEIGHT (selected_frame))
  913.     return;
  914.  
  915.   if (multi)
  916.     {
  917.       raw_cursor_to (vpos, 0);
  918.       background_highlight ();
  919.       buf = tparam (multi, 0, 0, i);
  920.       OUTPUT (buf);
  921.       xfree (buf);
  922.     }
  923.   else if (single)
  924.     {
  925.       raw_cursor_to (vpos, 0);
  926.       background_highlight ();
  927.       while (--i >= 0)
  928.     OUTPUT (single);
  929.       if (TF_teleray)
  930.     curX = 0;
  931.     }
  932.   else
  933.     {
  934.       set_scroll_region (vpos, specified_window);
  935.       if (n < 0)
  936.     raw_cursor_to (specified_window - 1, 0);
  937.       else
  938.     raw_cursor_to (vpos, 0);
  939.       background_highlight ();
  940.       while (--i >= 0)
  941.     OUTPUTL (scroll, specified_window - vpos);
  942.       set_scroll_region (0, specified_window);
  943.     }
  944.  
  945.   if (TN_standout_width >= 0)
  946.     {
  947.       register lower_limit
  948.     = (scroll_region_ok
  949.        ? specified_window
  950.        : FRAME_HEIGHT (selected_frame));
  951.  
  952.       if (n < 0)
  953.     {
  954.       bcopy (&chars_wasted[vpos - n], &chars_wasted[vpos],
  955.          lower_limit - vpos + n);
  956.       bzero (&chars_wasted[lower_limit + n], - n);
  957.     }
  958.       else
  959.     {
  960.       bcopy (&chars_wasted[vpos], ©buf[vpos], lower_limit - vpos - n);
  961.       bcopy (©buf[vpos], &chars_wasted[vpos + n],
  962.          lower_limit - vpos - n);
  963.       bzero (&chars_wasted[vpos], n);
  964.     }
  965.     }
  966.   if (!scroll_region_ok && memory_below_frame && n < 0)
  967.     {
  968.       cursor_to (FRAME_HEIGHT (selected_frame) + n, 0);
  969.       clear_to_end ();
  970.     }
  971. }
  972.  
  973. /* Compute cost of sending "str", in characters,
  974.    not counting any line-dependent padding.  */
  975.  
  976. int
  977. string_cost (str)
  978.      char *str;
  979. {
  980.   cost = 0;
  981.   if (str)
  982.     tputs (str, 0, evalcost);
  983.   return cost;
  984. }
  985.  
  986. /* Compute cost of sending "str", in characters,
  987.    counting any line-dependent padding at one line.  */
  988.  
  989. static int
  990. string_cost_one_line (str)
  991.      char *str;
  992. {
  993.   cost = 0;
  994.   if (str)
  995.     tputs (str, 1, evalcost);
  996.   return cost;
  997. }
  998.  
  999. /* Compute per line amount of line-dependent padding,
  1000.    in tenths of characters.  */
  1001.  
  1002. int
  1003. per_line_cost (str)
  1004.      register char *str;
  1005. {
  1006.   cost = 0;
  1007.   if (str)
  1008.     tputs (str, 0, evalcost);
  1009.   cost = - cost;
  1010.   if (str)
  1011.     tputs (str, 10, evalcost);
  1012.   return cost;
  1013. }
  1014.  
  1015. #ifndef old
  1016. /* char_ins_del_cost[n] is cost of inserting N characters.
  1017.    char_ins_del_cost[-n] is cost of deleting N characters. */
  1018.  
  1019. int *char_ins_del_vector;
  1020.  
  1021. #define char_ins_del_cost(f) (&char_ins_del_vector[FRAME_WIDTH ((f))])
  1022. #endif
  1023.  
  1024. /* ARGSUSED */
  1025. static void
  1026. calculate_ins_del_char_costs (frame)
  1027.      FRAME_PTR frame;
  1028. {
  1029.   int ins_startup_cost, del_startup_cost;
  1030.   int ins_cost_per_char, del_cost_per_char;
  1031.   register int i;
  1032.   register int *p;
  1033.  
  1034.   if (TS_ins_multi_chars)
  1035.     {
  1036.       ins_cost_per_char = 0;
  1037.       ins_startup_cost = string_cost_one_line (TS_ins_multi_chars);
  1038.     }
  1039.   else if (TS_ins_char || TS_pad_inserted_char
  1040.        || (TS_insert_mode && TS_end_insert_mode))
  1041.     {
  1042.       ins_startup_cost = (30 * (string_cost (TS_insert_mode)
  1043.                 + string_cost (TS_end_insert_mode))) / 100;
  1044.       ins_cost_per_char = (string_cost_one_line (TS_ins_char)
  1045.                + string_cost_one_line (TS_pad_inserted_char));
  1046.     }
  1047.   else
  1048.     {
  1049.       ins_startup_cost = 9999;
  1050.       ins_cost_per_char = 0;
  1051.     }
  1052.  
  1053.   if (TS_del_multi_chars)
  1054.     {
  1055.       del_cost_per_char = 0;
  1056.       del_startup_cost = string_cost_one_line (TS_del_multi_chars);
  1057.     }
  1058.   else if (TS_del_char)
  1059.     {
  1060.       del_startup_cost = (string_cost (TS_delete_mode)
  1061.               + string_cost (TS_end_delete_mode));
  1062.       if (delete_in_insert_mode)
  1063.     del_startup_cost /= 2;
  1064.       del_cost_per_char = string_cost_one_line (TS_del_char);
  1065.     }
  1066.   else
  1067.     {
  1068.       del_startup_cost = 9999;
  1069.       del_cost_per_char = 0;
  1070.     }
  1071.  
  1072.   /* Delete costs are at negative offsets */
  1073.   p = &char_ins_del_cost (frame)[0];
  1074.   for (i = FRAME_WIDTH (selected_frame); --i >= 0;)
  1075.     *--p = (del_startup_cost += del_cost_per_char);
  1076.  
  1077.   /* Doing nothing is free */
  1078.   p = &char_ins_del_cost (frame)[0];
  1079.   *p++ = 0;
  1080.  
  1081.   /* Insert costs are at positive offsets */
  1082.   for (i = FRAME_WIDTH (frame); --i >= 0;)
  1083.     *p++ = (ins_startup_cost += ins_cost_per_char);
  1084. }
  1085.  
  1086. #ifdef HAVE_X_WINDOWS
  1087. extern int x_screen_planes;
  1088. #endif
  1089.  
  1090. extern do_line_insertion_deletion_costs ();
  1091.  
  1092. calculate_costs (frame)
  1093.      FRAME_PTR frame;
  1094. {
  1095.   register char *f = TS_set_scroll_region ?
  1096.                        TS_set_scroll_region
  1097.              : TS_set_scroll_region_1;
  1098.  
  1099.   if (dont_calculate_costs)
  1100.     return;
  1101.  
  1102. #ifdef HAVE_X_WINDOWS
  1103.   if (FRAME_X_P (frame))
  1104.     {
  1105.       do_line_insertion_deletion_costs (frame, 0, ".5*", 0, ".5*",
  1106.                     0, 0, x_screen_planes);
  1107.       return;
  1108.     }
  1109. #endif
  1110. #ifdef AMIGA
  1111.   /* CHFIXME: does not work for termcap !, should use predicate as X above */
  1112.   do_line_insertion_deletion_costs (frame, 0, ".5*", 0, ".5*", 0, 0,
  1113.                     1 /* x_screen_planes CHFIXME: get planes ?*/);
  1114.   return;
  1115. #else
  1116.   /* These variables are only used for terminal stuff.  They are allocated
  1117.      once for the terminal frame of X-windows emacs, but not used afterwards.
  1118.  
  1119.      char_ins_del_vector (i.e., char_ins_del_cost) isn't used because
  1120.      X turns off char_ins_del_ok.
  1121.  
  1122.      chars_wasted and copybuf are only used here in term.c in cases where
  1123.      the term hook isn't called. */
  1124.  
  1125.   if (chars_wasted != 0)
  1126.     chars_wasted = (char *) xrealloc (chars_wasted, FRAME_HEIGHT (frame));
  1127.   else
  1128.     chars_wasted = (char *) xmalloc (FRAME_HEIGHT (frame));
  1129.  
  1130.   if (copybuf != 0)
  1131.     copybuf = (char *) xrealloc (copybuf, FRAME_HEIGHT (frame));
  1132.   else
  1133.     copybuf = (char *) xmalloc (FRAME_HEIGHT (frame));
  1134.  
  1135.   if (char_ins_del_vector != 0)
  1136.     char_ins_del_vector
  1137.       = (int *) xrealloc (char_ins_del_vector,
  1138.               (sizeof (int)
  1139.                + 2 * FRAME_WIDTH (frame) * sizeof (int)));
  1140.   else
  1141.     char_ins_del_vector
  1142.       = (int *) xmalloc (sizeof (int)
  1143.              + 2 * FRAME_WIDTH (frame) * sizeof (int));
  1144.  
  1145.   bzero (chars_wasted, FRAME_HEIGHT (frame));
  1146.   bzero (copybuf, FRAME_HEIGHT (frame));
  1147.   bzero (char_ins_del_vector, (sizeof (int)
  1148.                    + 2 * FRAME_WIDTH (frame) * sizeof (int)));
  1149.  
  1150.   if (f && (!TS_ins_line && !TS_del_line))
  1151.     do_line_insertion_deletion_costs (frame,
  1152.                       TS_rev_scroll, TS_ins_multi_lines,
  1153.                       TS_fwd_scroll, TS_del_multi_lines,
  1154.                       f, f, 1);
  1155.   else
  1156.     do_line_insertion_deletion_costs (frame,
  1157.                       TS_ins_line, TS_ins_multi_lines,
  1158.                       TS_del_line, TS_del_multi_lines,
  1159.                       0, 0, 1);
  1160.  
  1161.   calculate_ins_del_char_costs (frame);
  1162.  
  1163.   /* Don't use TS_repeat if its padding is worse than sending the chars */
  1164.   if (TS_repeat && per_line_cost (TS_repeat) * baud_rate < 9000)
  1165.     RPov = string_cost (TS_repeat);
  1166.   else
  1167.     RPov = FRAME_WIDTH (frame) * 2;
  1168.  
  1169.   cmcostinit ();        /* set up cursor motion costs */
  1170. #endif
  1171. }
  1172.  
  1173. struct fkey_table {
  1174.   char *cap, *name;
  1175. };
  1176.  
  1177.   /* Termcap capability names that correspond directly to X keysyms.
  1178.      Some of these (marked "terminfo") aren't supplied by old-style
  1179.      (Berkeley) termcap entries.  They're listed in X keysym order;
  1180.      except we put the keypad keys first, so that if they clash with
  1181.      other keys (as on the IBM PC keyboard) they get overridden.
  1182.   */
  1183.  
  1184. static struct fkey_table FAR keys[] = {
  1185.   "kh", "home",        /* termcap */
  1186.   "kl", "left",        /* termcap */
  1187.   "ku", "up",        /* termcap */
  1188.   "kr", "right",    /* termcap */
  1189.   "kd", "down",        /* termcap */
  1190.   "%8", "prior",    /* terminfo */
  1191.   "%5", "next",        /* terminfo */
  1192.   "@7",    "end",        /* terminfo */
  1193.   "@1", "begin",    /* terminfo */
  1194.   "*6", "select",    /* terminfo */
  1195.   "%9", "print",    /* terminfo */
  1196.   "@4", "execute",    /* terminfo --- actually the `command' key */
  1197.   /*
  1198.    * "insert" --- see below
  1199.    */
  1200.   "&8",    "undo",        /* terminfo */
  1201.   "%0",    "redo",        /* terminfo */
  1202.   "%7",    "menu",        /* terminfo --- actually the `options' key */
  1203.   "@0",    "find",        /* terminfo */
  1204.   "@2",    "cancel",    /* terminfo */
  1205.   "%1", "help",        /* terminfo */
  1206.   /*
  1207.    * "break" goes here, but can't be reliably intercepted with termcap
  1208.    */
  1209.   "&4", "reset",    /* terminfo --- actually `restart' */
  1210.   /*
  1211.    * "system" and "user" --- no termcaps
  1212.    */
  1213.   "kE", "clearline",    /* terminfo */
  1214.   "kA", "insertline",    /* terminfo */
  1215.   "kL", "deleteline",    /* terminfo */
  1216.   "kI", "insertchar",    /* terminfo */
  1217.   "kD", "deletechar",    /* terminfo */
  1218.   "kB", "backtab",    /* terminfo */
  1219.   /*
  1220.    * "kp_backtab", "kp-space", "kp-tab" --- no termcaps
  1221.    */
  1222.   "@8", "kp-enter",    /* terminfo */
  1223.   /*
  1224.    * "kp-f1", "kp-f2", "kp-f3" "kp-f4",
  1225.    * "kp-multiply", "kp-add", "kp-separator",
  1226.    * "kp-subtract", "kp-decimal", "kp-divide", "kp-0";
  1227.    * --- no termcaps for any of these.
  1228.    */
  1229.   "K4", "kp-1",        /* terminfo */
  1230.   /*
  1231.    * "kp-2" --- no termcap
  1232.    */
  1233.   "K5", "kp-3",        /* terminfo */
  1234.   /*
  1235.    * "kp-4" --- no termcap
  1236.    */
  1237.   "K2", "kp-5",        /* terminfo */
  1238.   /*
  1239.    * "kp-6" --- no termcap
  1240.    */
  1241.   "K1", "kp-7",        /* terminfo */
  1242.   /*
  1243.    * "kp-8" --- no termcap
  1244.    */
  1245.   "K3", "kp-9",        /* terminfo */
  1246.   /*
  1247.    * "kp-equal" --- no termcap
  1248.    */
  1249.   "k1",    "f1",
  1250.   "k2",    "f2",
  1251.   "k3",    "f3",
  1252.   "k4",    "f4",
  1253.   "k5",    "f5",
  1254.   "k6",    "f6",
  1255.   "k7",    "f7",
  1256.   "k8",    "f8",
  1257.   "k9",    "f9",
  1258.   };
  1259.  
  1260. static char **term_get_fkeys_arg;
  1261. static Lisp_Object term_get_fkeys_1 ();
  1262.  
  1263. /* Find the escape codes sent by the function keys for Vfunction_key_map.
  1264.    This function scans the termcap function key sequence entries, and 
  1265.    adds entries to Vfunction_key_map for each function key it finds.  */
  1266.  
  1267. void
  1268. term_get_fkeys (address)
  1269.      char **address;
  1270. {
  1271.   /* We run the body of the function (term_get_fkeys_1) and ignore all Lisp
  1272.      errors during the call.  The only errors should be from Fdefine_key
  1273.      when given a key sequence containing an invalid prefix key.  If the
  1274.      termcap defines function keys which use a prefix that is already bound
  1275.      to a command by the default bindings, we should silently ignore that
  1276.      function key specification, rather than giving the user an error and
  1277.      refusing to run at all on such a terminal.  */
  1278.  
  1279.   extern Lisp_Object Fidentity ();
  1280.   term_get_fkeys_arg = address;
  1281.   internal_condition_case (term_get_fkeys_1, Qerror, Fidentity);
  1282. }
  1283.  
  1284. static Lisp_Object
  1285. term_get_fkeys_1 ()
  1286. {
  1287.   int i;
  1288.  
  1289.   char **address = term_get_fkeys_arg;
  1290.  
  1291.   /* This can happen if CANNOT_DUMP or with strange options.  */
  1292.   if (!initialized)
  1293.     Vfunction_key_map = Fmake_sparse_keymap (Qnil);
  1294.  
  1295.   for (i = 0; i < (sizeof (keys)/sizeof (keys[0])); i++)
  1296.     {
  1297.       char *sequence = tgetstr (keys[i].cap, address);
  1298.       if (sequence)
  1299.     Fdefine_key (Vfunction_key_map, build_string (sequence),
  1300.              Fmake_vector (make_number (1),
  1301.                    intern (keys[i].name)));
  1302.     }
  1303.  
  1304.   /* The uses of the "k0" capability are inconsistent; sometimes it
  1305.      describes F10, whereas othertimes it describes F0 and "k;" describes F10.
  1306.      We will attempt to politely accommodate both systems by testing for
  1307.      "k;", and if it is present, assuming that "k0" denotes F0, otherwise F10.
  1308.      */
  1309.   {
  1310.     char *k_semi  = tgetstr ("k;", address);
  1311.     char *k0      = tgetstr ("k0", address);
  1312.     char *k0_name = "f10";
  1313.  
  1314.     if (k_semi)
  1315.       {
  1316.     Fdefine_key (Vfunction_key_map, build_string (k_semi),
  1317.              Fmake_vector (make_number (1), intern ("f10")));
  1318.     k0_name = "f0";
  1319.       }
  1320.  
  1321.     if (k0)
  1322.       Fdefine_key (Vfunction_key_map, build_string (k0),
  1323.            Fmake_vector (make_number (1), intern (k0_name)));
  1324.   }
  1325.  
  1326.   /* Set up cookies for numbered function keys above f10. */
  1327.   {
  1328.     char fcap[3], fkey[4];
  1329.  
  1330.     fcap[0] = 'F'; fcap[2] = '\0';
  1331.     for (i = 11; i < 64; i++)
  1332.       {
  1333.     if (i <= 19)
  1334.       fcap[1] = '1' + i - 11;
  1335.     else if (i <= 45)
  1336.       fcap[1] = 'A' + i - 11;
  1337.     else
  1338.       fcap[1] = 'a' + i - 11;
  1339.  
  1340.     {
  1341.       char *sequence = tgetstr (fcap, address);
  1342.       if (sequence)
  1343.         {
  1344.           sprintf (fkey, "f%d", i);
  1345.           Fdefine_key (Vfunction_key_map, build_string (sequence),
  1346.                Fmake_vector (make_number (1),
  1347.                      intern (fkey)));
  1348.         }
  1349.     }
  1350.       }
  1351.    }
  1352.  
  1353.   /*
  1354.    * Various mappings to try and get a better fit.
  1355.    */
  1356.   {
  1357. #define CONDITIONAL_REASSIGN(cap1, cap2, sym)                \
  1358.       if (!tgetstr (cap1, address))                    \
  1359.     {                                \
  1360.       char *sequence = tgetstr (cap2, address);            \
  1361.       if (sequence)                            \
  1362.         Fdefine_key (Vfunction_key_map, build_string (sequence),    \
  1363.              Fmake_vector (make_number (1),    \
  1364.                        intern (sym)));    \
  1365.     }
  1366.       
  1367.       /* if there's no key_next keycap, map key_npage to `next' keysym */
  1368.       CONDITIONAL_REASSIGN ("%5", "kN", "next");
  1369.       /* if there's no key_prev keycap, map key_ppage to `previous' keysym */
  1370.       CONDITIONAL_REASSIGN ("%8", "kP", "prior");
  1371.       /* if there's no key_dc keycap, map key_ic to `insert' keysym */
  1372.       CONDITIONAL_REASSIGN ("kD", "kI", "insert");
  1373. #undef CONDITIONAL_REASSIGN
  1374.   }
  1375. }
  1376.  
  1377.  
  1378. term_init (terminal_type)
  1379.      char *terminal_type;
  1380. {
  1381.   char *area;
  1382.   char **address = &area;
  1383.   char buffer[2044];
  1384.   register char *p;
  1385.   int status;
  1386.  
  1387.   Wcm_clear ();
  1388.   dont_calculate_costs = 0;
  1389.  
  1390.   status = tgetent (buffer, terminal_type);
  1391.   if (status < 0)
  1392.     fatal ("Cannot open termcap database file.\n");
  1393.   if (status == 0)
  1394.     fatal ("Terminal type %s is not defined.\n\
  1395. If that is not the actual type of terminal you have,\n\
  1396. use the Bourne shell command `TERM=... export TERM' (C-shell:\n\
  1397. `setenv TERM ...') to specify the correct type.  It may be necessary\n\
  1398. to do `unset TERMCAP' (C-shell: `unsetenv TERMCAP') as well.\n",
  1399.        terminal_type);
  1400.  
  1401. #ifdef TERMINFO
  1402.   area = (char *) malloc (2044);
  1403. #else
  1404.   area = (char *) malloc (strlen (buffer));
  1405. #endif /* not TERMINFO */
  1406.   if (area == 0)
  1407.     abort ();
  1408.  
  1409.   TS_ins_line = tgetstr ("al", address);
  1410.   TS_ins_multi_lines = tgetstr ("AL", address);
  1411.   TS_bell = tgetstr ("bl", address);
  1412.   BackTab = tgetstr ("bt", address);
  1413.   TS_clr_to_bottom = tgetstr ("cd", address);
  1414.   TS_clr_line = tgetstr ("ce", address);
  1415.   TS_clr_frame = tgetstr ("cl", address);
  1416.   ColPosition = tgetstr ("ch", address);
  1417.   AbsPosition = tgetstr ("cm", address);
  1418.   CR = tgetstr ("cr", address);
  1419.   TS_set_scroll_region = tgetstr ("cs", address);
  1420.   TS_set_scroll_region_1 = tgetstr ("cS", address);
  1421.   RowPosition = tgetstr ("cv", address);
  1422.   TS_del_char = tgetstr ("dc", address);
  1423.   TS_del_multi_chars = tgetstr ("DC", address);
  1424.   TS_del_line = tgetstr ("dl", address);
  1425.   TS_del_multi_lines = tgetstr ("DL", address);
  1426.   TS_delete_mode = tgetstr ("dm", address);
  1427.   TS_end_delete_mode = tgetstr ("ed", address);
  1428.   TS_end_insert_mode = tgetstr ("ei", address);
  1429.   Home = tgetstr ("ho", address);
  1430.   TS_ins_char = tgetstr ("ic", address);
  1431.   TS_ins_multi_chars = tgetstr ("IC", address);
  1432.   TS_insert_mode = tgetstr ("im", address);
  1433.   TS_pad_inserted_char = tgetstr ("ip", address);
  1434.   TS_end_keypad_mode = tgetstr ("ke", address);
  1435.   TS_keypad_mode = tgetstr ("ks", address);
  1436.   LastLine = tgetstr ("ll", address);
  1437.   Right = tgetstr ("nd", address);
  1438.   Down = tgetstr ("do", address);
  1439.   if (!Down)
  1440.     Down = tgetstr ("nl", address); /* Obsolete name for "do" */
  1441. #ifdef VMS
  1442.   /* VMS puts a carriage return before each linefeed,
  1443.      so it is not safe to use linefeeds.  */
  1444.   if (Down && Down[0] == '\n' && Down[1] == '\0')
  1445.     Down = 0;
  1446. #endif /* VMS */
  1447.   if (tgetflag ("bs"))
  1448.     Left = "\b";          /* can't possibly be longer! */
  1449.   else                  /* (Actually, "bs" is obsolete...) */
  1450.     Left = tgetstr ("le", address);
  1451.   if (!Left)
  1452.     Left = tgetstr ("bc", address); /* Obsolete name for "le" */
  1453.   TS_pad_char = tgetstr ("pc", address);
  1454.   TS_repeat = tgetstr ("rp", address);
  1455.   TS_end_standout_mode = tgetstr ("se", address);
  1456.   TS_fwd_scroll = tgetstr ("sf", address);
  1457.   TS_standout_mode = tgetstr ("so", address);
  1458.   TS_rev_scroll = tgetstr ("sr", address);
  1459.   Wcm.cm_tab = tgetstr ("ta", address);
  1460.   TS_end_termcap_modes = tgetstr ("te", address);
  1461.   TS_termcap_modes = tgetstr ("ti", address);
  1462.   Up = tgetstr ("up", address);
  1463.   TS_visible_bell = tgetstr ("vb", address);
  1464.   TS_end_visual_mode = tgetstr ("ve", address);
  1465.   TS_visual_mode = tgetstr ("vs", address);
  1466.   TS_set_window = tgetstr ("wi", address);
  1467.   MultiUp = tgetstr ("UP", address);
  1468.   MultiDown = tgetstr ("DO", address);
  1469.   MultiLeft = tgetstr ("LE", address);
  1470.   MultiRight = tgetstr ("RI", address);
  1471.  
  1472.   AutoWrap = tgetflag ("am");
  1473.   memory_below_frame = tgetflag ("db");
  1474.   TF_hazeltine = tgetflag ("hz");
  1475.   must_write_spaces = tgetflag ("in");
  1476.   meta_key = tgetflag ("km") || tgetflag ("MT");
  1477.   TF_insmode_motion = tgetflag ("mi");
  1478.   TF_standout_motion = tgetflag ("ms");
  1479.   TF_underscore = tgetflag ("ul");
  1480.   MagicWrap = tgetflag ("xn");
  1481.   TF_xs = tgetflag ("xs");
  1482.   TF_teleray = tgetflag ("xt");
  1483.  
  1484.   term_get_fkeys (address);
  1485.  
  1486.   /* Get frame size from system, or else from termcap.  */
  1487.   get_frame_size (&FRAME_WIDTH (selected_frame),
  1488.            &FRAME_HEIGHT (selected_frame));
  1489.   if (FRAME_WIDTH (selected_frame) <= 0)
  1490.     FRAME_WIDTH (selected_frame) = tgetnum ("co");
  1491.   if (FRAME_HEIGHT (selected_frame) <= 0)
  1492.     FRAME_HEIGHT (selected_frame) = tgetnum ("li");
  1493.  
  1494.   min_padding_speed = tgetnum ("pb");
  1495.   TN_standout_width = tgetnum ("sg");
  1496.   TabWidth = tgetnum ("tw");
  1497.  
  1498. #ifdef VMS
  1499.   /* These capabilities commonly use ^J.
  1500.      I don't know why, but sending them on VMS does not work;
  1501.      it causes following spaces to be lost, sometimes.
  1502.      For now, the simplest fix is to avoid using these capabilities ever.  */
  1503.   if (Down && Down[0] == '\n')
  1504.     Down = 0;
  1505. #endif /* VMS */
  1506.  
  1507.   if (!TS_bell)
  1508.     TS_bell = "\07";
  1509.  
  1510.   if (!TS_fwd_scroll)
  1511.     TS_fwd_scroll = Down;
  1512.  
  1513.   PC = TS_pad_char ? *TS_pad_char : 0;
  1514.  
  1515.   if (TabWidth < 0)
  1516.     TabWidth = 8;
  1517.   
  1518. /* Turned off since /etc/termcap seems to have :ta= for most terminals
  1519.    and newer termcap doc does not seem to say there is a default.
  1520.   if (!Wcm.cm_tab)
  1521.     Wcm.cm_tab = "\t";
  1522. */
  1523.  
  1524.   if (TS_standout_mode == 0)
  1525.     {
  1526.       TN_standout_width = tgetnum ("ug");
  1527.       TS_end_standout_mode = tgetstr ("ue", address);
  1528.       TS_standout_mode = tgetstr ("us", address);
  1529.     }
  1530.  
  1531.   /* If no `se' string, try using a `me' string instead.
  1532.      If that fails, we can't use standout mode at all.  */
  1533.   if (TS_end_standout_mode == 0)
  1534.     {
  1535.       char *s = tgetstr ("me", address);
  1536.       if (s != 0)
  1537.     TS_end_standout_mode = s;
  1538.       else
  1539.     TS_standout_mode = 0;
  1540.     }
  1541.  
  1542.   if (TF_teleray)
  1543.     {
  1544.       Wcm.cm_tab = 0;
  1545.       /* Teleray: most programs want a space in front of TS_standout_mode,
  1546.        but Emacs can do without it (and give one extra column).  */
  1547.       TS_standout_mode = "\033RD";
  1548.       TN_standout_width = 1;
  1549.       /* But that means we cannot rely on ^M to go to column zero! */
  1550.       CR = 0;
  1551.       /* LF can't be trusted either -- can alter hpos */
  1552.       /* if move at column 0 thru a line with TS_standout_mode */
  1553.       Down = 0;
  1554.     }
  1555.  
  1556.   /* Special handling for certain terminal types known to need it */
  1557.  
  1558.   if (!strcmp (terminal_type, "supdup"))
  1559.     {
  1560.       memory_below_frame = 1;
  1561.       Wcm.cm_losewrap = 1;
  1562.     }
  1563.   if (!strncmp (terminal_type, "c10", 3)
  1564.       || !strcmp (terminal_type, "perq"))
  1565.     {
  1566.       /* Supply a makeshift :wi string.
  1567.      This string is not valid in general since it works only
  1568.      for windows starting at the upper left corner;
  1569.      but that is all Emacs uses.
  1570.  
  1571.      This string works only if the frame is using
  1572.      the top of the video memory, because addressing is memory-relative.
  1573.      So first check the :ti string to see if that is true.
  1574.  
  1575.      It would be simpler if the :wi string could go in the termcap
  1576.      entry, but it can't because it is not fully valid.
  1577.      If it were in the termcap entry, it would confuse other programs.  */
  1578.       if (!TS_set_window)
  1579.     {
  1580.       p = TS_termcap_modes;
  1581.       while (*p && strcmp (p, "\033v  "))
  1582.         p++;
  1583.       if (*p)
  1584.         TS_set_window = "\033v%C %C %C %C ";
  1585.     }
  1586.       /* Termcap entry often fails to have :in: flag */
  1587.       must_write_spaces = 1;
  1588.       /* :ti string typically fails to have \E^G! in it */
  1589.       /* This limits scope of insert-char to one line.  */
  1590.       strcpy (area, TS_termcap_modes);
  1591.       strcat (area, "\033\007!");
  1592.       TS_termcap_modes = area;
  1593.       area += strlen (area) + 1;
  1594.       p = AbsPosition;
  1595.       /* Change all %+ parameters to %C, to handle
  1596.      values above 96 correctly for the C100.  */
  1597.       while (*p)
  1598.     {
  1599.       if (p[0] == '%' && p[1] == '+')
  1600.         p[1] = 'C';
  1601.       p++;
  1602.     }
  1603.     }
  1604.  
  1605.   FrameRows = FRAME_HEIGHT (selected_frame);
  1606.   FrameCols = FRAME_WIDTH (selected_frame);
  1607.   specified_window = FRAME_HEIGHT (selected_frame);
  1608.  
  1609.   if (Wcm_init () == -1)    /* can't do cursor motion */
  1610. #ifdef VMS
  1611.     fatal ("Terminal type \"%s\" is not powerful enough to run Emacs.\n\
  1612. It lacks the ability to position the cursor.\n\
  1613. If that is not the actual type of terminal you have, use either the\n\
  1614. DCL command `SET TERMINAL/DEVICE= ...' for DEC-compatible terminals,\n\
  1615. or `define EMACS_TERM \"terminal type\"' for non-DEC terminals.\n",
  1616.            terminal_type);
  1617. #else
  1618.     fatal ("Terminal type \"%s\" is not powerful enough to run Emacs.\n\
  1619. It lacks the ability to position the cursor.\n\
  1620. If that is not the actual type of terminal you have,\n\
  1621. use the Bourne shell command `TERM=... export TERM' (C-shell:\n\
  1622. `setenv TERM ...') to specify the correct type.  It may be necessary\n\
  1623. to do `unset TERMCAP' (C-shell: `unsetenv TERMCAP') as well.\n",
  1624.        terminal_type);
  1625. #endif
  1626.   if (FRAME_HEIGHT (selected_frame) <= 0
  1627.       || FRAME_WIDTH (selected_frame) <= 0)
  1628.     fatal ("The frame size has not been specified.");
  1629.  
  1630.   delete_in_insert_mode
  1631.     = TS_delete_mode && TS_insert_mode
  1632.       && !strcmp (TS_delete_mode, TS_insert_mode);
  1633.  
  1634.   se_is_so = (TS_standout_mode
  1635.           && TS_end_standout_mode
  1636.           && !strcmp (TS_standout_mode, TS_end_standout_mode));
  1637.  
  1638.   /* Remove width of standout marker from usable width of line */
  1639.   if (TN_standout_width > 0)
  1640.     FRAME_WIDTH (selected_frame) -= TN_standout_width;
  1641.  
  1642.   UseTabs = tabs_safe_p () && TabWidth == 8;
  1643.  
  1644.   scroll_region_ok
  1645.     = (Wcm.cm_abs
  1646.        && (TS_set_window || TS_set_scroll_region || TS_set_scroll_region_1));
  1647.  
  1648.   line_ins_del_ok = (((TS_ins_line || TS_ins_multi_lines)
  1649.               && (TS_del_line || TS_del_multi_lines))
  1650.              || (scroll_region_ok && TS_fwd_scroll && TS_rev_scroll));
  1651.  
  1652.   char_ins_del_ok = ((TS_ins_char || TS_insert_mode
  1653.               || TS_pad_inserted_char || TS_ins_multi_chars)
  1654.              && (TS_del_char || TS_del_multi_chars));
  1655.  
  1656.   fast_clear_end_of_line = TS_clr_line != 0;
  1657.  
  1658.   init_baud_rate ();
  1659.   if (read_socket_hook)        /* Baudrate is somewhat */
  1660.                 /* meaningless in this case */
  1661.     baud_rate = 9600;
  1662.  
  1663.   FRAME_CAN_HAVE_SCROLL_BARS (selected_frame) = 0;
  1664.   FRAME_HAS_VERTICAL_SCROLL_BARS (selected_frame) = 0;
  1665. }
  1666.  
  1667. /* VARARGS 1 */
  1668. fatal (str, arg1, arg2)
  1669.      char *str, *arg1, *arg2;
  1670. {
  1671.   fprintf (stderr, "emacs: ");
  1672.   fprintf (stderr, str, arg1, arg2);
  1673.   fflush (stderr);
  1674.   exit (1);
  1675. }
  1676.  
  1677. syms_of_term ()
  1678. {
  1679.   DEFVAR_BOOL ("system-uses-terminfo", &system_uses_terminfo,
  1680.     "Non-nil means the system uses terminfo rather than termcap.\n\
  1681. This variable can be used by terminal emulator packages.");
  1682. #ifdef TERMINFO
  1683.   system_uses_terminfo = 1;
  1684. #else
  1685.   system_uses_terminfo = 0;
  1686. #endif
  1687. }
  1688.