home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-src.tgz / tar.out / fsf / octave / readline / rltty.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  16KB  |  668 lines

  1. /* rltty.c -- functions to prepare and restore the terminal for readline's
  2.    use. */
  3.  
  4. /* Copyright (C) 1992 Free Software Foundation, Inc.
  5.  
  6.    This file is part of the GNU Readline Library, a library for
  7.    reading lines of text with interactive input and history editing.
  8.  
  9.    The GNU Readline Library is free software; you can redistribute it
  10.    and/or modify it under the terms of the GNU General Public License
  11.    as published by the Free Software Foundation; either version 1, or
  12.    (at your option) any later version.
  13.  
  14.    The GNU Readline Library is distributed in the hope that it will be
  15.    useful, but WITHOUT ANY WARRANTY; without even the implied warranty
  16.    of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.    GNU General Public License for more details.
  18.  
  19.    The GNU General Public License is often shipped with GNU software, and
  20.    is generally kept in a file called COPYING or LICENSE.  If you do not
  21.    have a copy of the license, write to the Free Software Foundation,
  22.    675 Mass Ave, Cambridge, MA 02139, USA. */
  23. #include <sys/types.h>
  24. #include <signal.h>
  25. #include <errno.h>
  26. #include <stdio.h>
  27.  
  28. #if defined (HAVE_UNISTD_H)
  29. #  include <unistd.h>
  30. #endif /* HAVE_UNISTD_H */
  31.  
  32. #include "rldefs.h"
  33. #include "readline.h"
  34.  
  35. #if !defined (errno)
  36. extern int errno;
  37. #endif /* !errno */
  38.  
  39. extern int readline_echoing_p;
  40. extern int _rl_eof_char;
  41.  
  42. #if defined (_GO32_)
  43. #  include <sys/pc.h>
  44. #  undef HANDLE_SIGNALS
  45. #endif /* _GO32_ */
  46.  
  47. /* **************************************************************** */
  48. /*                                    */
  49. /*               Signal Management                */
  50. /*                                    */
  51. /* **************************************************************** */
  52.  
  53. #if defined (HAVE_POSIX_SIGNALS)
  54. static sigset_t sigint_set, sigint_oset;
  55. #else /* !HAVE_POSIX_SIGNALS */
  56. #  if defined (HAVE_BSD_SIGNALS)
  57. static int sigint_oldmask;
  58. #  endif /* HAVE_BSD_SIGNALS */
  59. #endif /* !HAVE_POSIX_SIGNALS */
  60.  
  61. static int sigint_blocked = 0;
  62.  
  63. /* Cause SIGINT to not be delivered until the corresponding call to
  64.    release_sigint(). */
  65. static void
  66. block_sigint ()
  67. {
  68.   if (sigint_blocked)
  69.     return;
  70.  
  71. #if defined (HAVE_POSIX_SIGNALS)
  72.   sigemptyset (&sigint_set);
  73.   sigemptyset (&sigint_oset);
  74.   sigaddset (&sigint_set, SIGINT);
  75.   sigprocmask (SIG_BLOCK, &sigint_set, &sigint_oset);
  76. #else /* !HAVE_POSIX_SIGNALS */
  77. #  if defined (HAVE_BSD_SIGNALS)
  78.   sigint_oldmask = sigblock (sigmask (SIGINT));
  79. #  else /* !HAVE_BSD_SIGNALS */
  80. #    if defined (HAVE_USG_SIGHOLD)
  81.   sighold (SIGINT);
  82. #    endif /* HAVE_USG_SIGHOLD */
  83. #  endif /* !HAVE_BSD_SIGNALS */
  84. #endif /* !HAVE_POSIX_SIGNALS */
  85.   sigint_blocked = 1;
  86. }
  87.  
  88. /* Allow SIGINT to be delivered. */
  89. static void
  90. release_sigint ()
  91. {
  92.   if (!sigint_blocked)
  93.     return;
  94.  
  95. #if defined (HAVE_POSIX_SIGNALS)
  96.   sigprocmask (SIG_SETMASK, &sigint_oset, (sigset_t *)NULL);
  97. #else
  98. #  if defined (HAVE_BSD_SIGNALS)
  99.   sigsetmask (sigint_oldmask);
  100. #  else /* !HAVE_BSD_SIGNALS */
  101. #    if defined (HAVE_USG_SIGHOLD)
  102.   sigrelse (SIGINT);
  103. #    endif /* HAVE_USG_SIGHOLD */
  104. #  endif /* !HAVE_BSD_SIGNALS */
  105. #endif /* !HAVE_POSIX_SIGNALS */
  106.  
  107.   sigint_blocked = 0;
  108. }
  109.  
  110. /* **************************************************************** */
  111. /*                                    */
  112. /*              Controlling the Meta Key                */
  113. /*                                    */
  114. /* **************************************************************** */
  115.  
  116. extern int term_has_meta;
  117. extern char *term_mm;
  118. extern char *term_mo;
  119.  
  120. static void
  121. outchar (c)
  122.      int c;
  123. {
  124.   putc (c, rl_outstream);
  125. }
  126.  
  127. /* Turn on/off the meta key depending on ON. */
  128. static void
  129. control_meta_key (on)
  130.      int on;
  131. {
  132.   if (term_has_meta)
  133.     {
  134.       if (on && term_mm)
  135.     tputs (term_mm, 1, outchar);
  136.       else if (!on && term_mo)
  137.     tputs (term_mo, 1, outchar);
  138.     }
  139. }
  140.  
  141. /* **************************************************************** */
  142. /*                                    */
  143. /*              Saving and Restoring the TTY                */
  144. /*                                    */
  145. /* **************************************************************** */
  146.  
  147. /* Non-zero means that the terminal is in a prepped state. */
  148. static int terminal_prepped = 0;
  149.  
  150. /* If non-zero, means that this process has called tcflow(fd, TCOOFF)
  151.    and output is suspended. */
  152. #if defined (__ksr1__)
  153. static int ksrflow = 0;
  154. #endif
  155. #if defined (NEW_TTY_DRIVER)
  156.  
  157. /* Values for the `flags' field of a struct bsdtty.  This tells which
  158.    elements of the struct bsdtty have been fetched from the system and
  159.    are valid. */
  160. #define SGTTY_SET    0x01
  161. #define LFLAG_SET    0x02
  162. #define TCHARS_SET    0x04
  163. #define LTCHARS_SET    0x08
  164.  
  165. struct bsdtty {
  166.   struct sgttyb sgttyb;    /* Basic BSD tty driver information. */
  167.   int lflag;        /* Local mode flags, like LPASS8. */
  168. #if defined (TIOCGETC)
  169.   struct tchars tchars;    /* Terminal special characters, including ^S and ^Q. */
  170. #endif
  171. #if defined (TIOCGLTC)
  172.   struct ltchars ltchars; /* 4.2 BSD editing characters */
  173. #endif
  174.   int flags;        /* Bitmap saying which parts of the struct are valid. */
  175. };
  176.  
  177. #define TIOTYPE struct bsdtty
  178.  
  179. static TIOTYPE otio;
  180.  
  181. static int
  182. get_tty_settings (tty, tiop)
  183.      int tty;
  184.      TIOTYPE *tiop;
  185. {
  186.   tiop->flags = tiop->lflag = 0;
  187.  
  188.   ioctl (tty, TIOCGETP, &(tiop->sgttyb));
  189.   tiop->flags |= SGTTY_SET;
  190.  
  191. #if defined (TIOCLGET)
  192.   ioctl (tty, TIOCLGET, &(tiop->lflag));
  193.   tiop->flags |= LFLAG_SET;
  194. #endif
  195.  
  196. #if defined (TIOCGETC)
  197.   ioctl (tty, TIOCGETC, &(tiop->tchars));
  198.   tiop->flags |= TCHARS_SET;
  199. #endif
  200.  
  201. #if defined (TIOCGLTC)
  202.   ioctl (tty, TIOCGLTC, &(tiop->ltchars));
  203.   tiop->flags |= LTCHARS_SET;
  204. #endif
  205.  
  206.   return 0;
  207. }
  208.  
  209. set_tty_settings (tty, tiop)
  210.      int tty;
  211.      TIOTYPE *tiop;
  212. {
  213.   if (tiop->flags & SGTTY_SET)
  214.     {
  215.       ioctl (tty, TIOCSETN, &(tiop->sgttyb));
  216.       tiop->flags &= ~SGTTY_SET;
  217.     }
  218.   readline_echoing_p = 1;
  219.  
  220. #if defined (TIOCLSET)
  221.   if (tiop->flags & LFLAG_SET)
  222.     {
  223.       ioctl (tty, TIOCLSET, &(tiop->lflag));
  224.       tiop->flags &= ~LFLAG_SET;
  225.     }
  226. #endif
  227.  
  228. #if defined (TIOCSETC)
  229.   if (tiop->flags & TCHARS_SET)
  230.     {
  231.       ioctl (tty, TIOCSETC, &(tiop->tchars));
  232.       tiop->flags &= ~TCHARS_SET;
  233.     }
  234. #endif
  235.  
  236. #if defined (TIOCSLTC)
  237.   if (tiop->flags & LTCHARS_SET)
  238.     {
  239.       ioctl (tty, TIOCSLTC, &(tiop->ltchars));
  240.       tiop->flags &= ~LTCHARS_SET;
  241.     }
  242. #endif
  243.  
  244.   return 0;
  245. }
  246.  
  247. static void
  248. prepare_terminal_settings (meta_flag, otio, tiop)
  249.      int meta_flag;
  250.      TIOTYPE otio, *tiop;
  251. {
  252. #if !defined (_GO32_)
  253.   readline_echoing_p = (otio.sgttyb.sg_flags & ECHO);
  254.  
  255.   /* Copy the original settings to the structure we're going to use for
  256.      our settings. */
  257.   tiop->sgttyb = otio.sgttyb;
  258.   tiop->lflag = otio.lflag;
  259. #if defined (TIOCGETC)
  260.   tiop->tchars = otio.tchars;
  261. #endif
  262. #if defined (TIOCGLTC)
  263.   tiop->ltchars = otio.ltchars;
  264. #endif
  265.   tiop->flags = otio.flags;
  266.  
  267.   /* First, the basic settings to put us into character-at-a-time, no-echo
  268.      input mode. */
  269.   tiop->sgttyb.sg_flags &= ~(ECHO | CRMOD);
  270.   tiop->sgttyb.sg_flags |= CBREAK;
  271.  
  272.   /* If this terminal doesn't care how the 8th bit is used, then we can
  273.      use it for the meta-key.  If only one of even or odd parity is
  274.      specified, then the terminal is using parity, and we cannot. */
  275. #if !defined (ANYP)
  276. #  define ANYP (EVENP | ODDP)
  277. #endif
  278.   if (((otio.sgttyb.sg_flags & ANYP) == ANYP) ||
  279.       ((otio.sgttyb.sg_flags & ANYP) == 0))
  280.     {
  281.       tiop->sgttyb.sg_flags |= ANYP;
  282.  
  283.       /* Hack on local mode flags if we can. */
  284. #if defined (TIOCLGET)
  285. #  if defined (LPASS8)
  286.       tiop->lflag |= LPASS8;
  287. #  endif /* LPASS8 */
  288. #endif /* TIOCLGET */
  289.     }
  290.  
  291. #if defined (TIOCGETC)
  292. #  if defined (USE_XON_XOFF)
  293.   /* Get rid of terminal output start and stop characters. */
  294.   tiop->tchars.t_stopc = -1; /* C-s */
  295.   tiop->tchars.t_startc = -1; /* C-q */
  296.  
  297.   /* If there is an XON character, bind it to restart the output. */
  298.   if (otio.tchars.t_startc != -1)
  299.     rl_bind_key (otio.tchars.t_startc, rl_restart_output);
  300. #  endif /* USE_XON_XOFF */
  301.  
  302.   /* If there is an EOF char, bind _rl_eof_char to it. */
  303.   if (otio.tchars.t_eofc != -1)
  304.     _rl_eof_char = otio.tchars.t_eofc;
  305.  
  306. #  if defined (NO_KILL_INTR)
  307.   /* Get rid of terminal-generated SIGQUIT and SIGINT. */
  308.   tiop->tchars.t_quitc = -1; /* C-\ */
  309.   tiop->tchars.t_intrc = -1; /* C-c */
  310. #  endif /* NO_KILL_INTR */
  311. #endif /* TIOCGETC */
  312.  
  313. #if defined (TIOCGLTC)
  314.   /* Make the interrupt keys go away.  Just enough to make people happy. */
  315.   tiop->ltchars.t_dsuspc = -1;    /* C-y */
  316.   tiop->ltchars.t_lnextc = -1;    /* C-v */
  317. #endif /* TIOCGLTC */
  318. #endif /* !_GO32_ */
  319. }
  320.  
  321. #else  /* !defined (NEW_TTY_DRIVER) */
  322.  
  323. #if !defined (VMIN)
  324. #  define VMIN VEOF
  325. #endif
  326.  
  327. #if !defined (VTIME)
  328. #  define VTIME VEOL
  329. #endif
  330.  
  331. #if defined (TERMIOS_TTY_DRIVER)
  332. #  define TIOTYPE struct termios
  333. #  define DRAIN_OUTPUT(fd)    tcdrain (fd)
  334. #  define GETATTR(tty, tiop)    (tcgetattr (tty, tiop))
  335. #  define SETATTR(tty, tiop)    (tcsetattr (tty, TCSANOW, tiop))
  336. #else
  337. #  define TIOTYPE struct termio
  338. #  define DRAIN_OUTPUT(fd)
  339. #  define GETATTR(tty, tiop)    (ioctl (tty, TCGETA, tiop))
  340. #  define SETATTR(tty, tiop)    (ioctl (tty, TCSETA, tiop))
  341. #endif /* !TERMIOS_TTY_DRIVER */
  342.  
  343. static TIOTYPE otio;
  344.  
  345. static int
  346. get_tty_settings (tty, tiop)
  347.      int tty;
  348.      TIOTYPE *tiop;
  349. {
  350.   while (GETATTR (tty, tiop) < 0)
  351.     {
  352.       if (errno != EINTR)
  353.     return -1;
  354.       errno = 0;
  355.     }
  356.   return 0;
  357. }
  358.  
  359. static int
  360. set_tty_settings (tty, tiop)
  361.      int tty;
  362.      TIOTYPE *tiop;
  363. {
  364.   while (SETATTR (tty, tiop) < 0)
  365.     {
  366.       if (errno != EINTR)
  367.     return -1;
  368.       errno = 0;
  369.     }
  370.  
  371. #if 0
  372.  
  373. #if defined (TERMIOS_TTY_DRIVER)
  374. #  if defined (__ksr1__)
  375.   if (ksrflow)
  376.     {
  377.       ksrflow = 0;
  378.       tcflow (tty, TCOON);
  379.     }
  380. #  else /* !ksr1 */
  381.   tcflow (tty, TCOON);        /* Simulate a ^Q. */
  382. #  endif /* !ksr1 */
  383. #else
  384.   ioctl (tty, TCXONC, 1);    /* Simulate a ^Q. */
  385. #endif /* !TERMIOS_TTY_DRIVER */
  386.  
  387. #endif
  388.  
  389.   return 0;
  390. }
  391.  
  392. static void
  393. prepare_terminal_settings (meta_flag, otio, tiop)
  394.      int meta_flag;
  395.      TIOTYPE otio, *tiop;
  396. {
  397.   readline_echoing_p = (otio.c_lflag & ECHO);
  398.  
  399.   tiop->c_lflag &= ~(ICANON | ECHO);
  400.  
  401.   if ((unsigned char) otio.c_cc[VEOF] != (unsigned char) _POSIX_VDISABLE)
  402.     _rl_eof_char = otio.c_cc[VEOF];
  403.  
  404. #if defined (USE_XON_XOFF)
  405. #if defined (IXANY)
  406.   tiop->c_iflag &= ~(IXON | IXOFF | IXANY);
  407. #else
  408.   /* `strict' Posix systems do not define IXANY. */
  409.   tiop->c_iflag &= ~(IXON | IXOFF);
  410. #endif /* IXANY */
  411. #endif /* USE_XON_XOFF */
  412.  
  413.   /* Only turn this off if we are using all 8 bits. */
  414.   if (((tiop->c_cflag & CSIZE) == CS8) || meta_flag)
  415.     tiop->c_iflag &= ~(ISTRIP | INPCK);
  416.  
  417.   /* Make sure we differentiate between CR and NL on input. */
  418.   tiop->c_iflag &= ~(ICRNL | INLCR);
  419.  
  420. #if !defined (HANDLE_SIGNALS)
  421.   tiop->c_lflag &= ~ISIG;
  422. #else
  423.   tiop->c_lflag |= ISIG;
  424. #endif
  425.  
  426.   tiop->c_cc[VMIN] = 1;
  427.   tiop->c_cc[VTIME] = 0;
  428.  
  429.   /* Turn off characters that we need on Posix systems with job control,
  430.      just to be sure.  This includes ^Y and ^V.  This should not really
  431.      be necessary.  */
  432. #if defined (TERMIOS_TTY_DRIVER) && defined (_POSIX_VDISABLE)
  433.  
  434. #if defined (VLNEXT)
  435.   tiop->c_cc[VLNEXT] = _POSIX_VDISABLE;
  436. #endif
  437.  
  438. #if defined (VDSUSP)
  439.   tiop->c_cc[VDSUSP] = _POSIX_VDISABLE;
  440. #endif
  441.  
  442. #endif /* TERMIOS_TTY_DRIVER && _POSIX_VDISABLE */
  443. }
  444. #endif  /* NEW_TTY_DRIVER */
  445.  
  446. /* Put the terminal in CBREAK mode so that we can detect key presses. */
  447. void
  448. rl_prep_terminal (meta_flag)
  449.      int meta_flag;
  450. {
  451. #if !defined (_GO32_)
  452.   int tty = fileno (rl_instream);
  453.   TIOTYPE tio;
  454.  
  455.   if (terminal_prepped)
  456.     return;
  457.  
  458.   /* Try to keep this function from being INTerrupted. */
  459.   block_sigint ();
  460.  
  461.   if (get_tty_settings (tty, &tio) < 0)
  462.     {
  463.       release_sigint ();
  464.       return;
  465.     }
  466.  
  467.   otio = tio;
  468.  
  469.   prepare_terminal_settings (meta_flag, otio, &tio);
  470.  
  471.   if (set_tty_settings (tty, &tio) < 0)
  472.     {
  473.       release_sigint ();
  474.       return;
  475.     }
  476.  
  477.   control_meta_key (1);
  478.   terminal_prepped = 1;
  479.  
  480.   release_sigint ();
  481. #endif /* !_GO32_ */
  482. }
  483.  
  484. /* Restore the terminal's normal settings and modes. */
  485. void
  486. rl_deprep_terminal ()
  487. {
  488. #if !defined (_GO32_)
  489.   int tty = fileno (rl_instream);
  490.  
  491.   if (!terminal_prepped)
  492.     return;
  493.  
  494.   /* Try to keep this function from being INTerrupted. */
  495.   block_sigint ();
  496.  
  497.   if (set_tty_settings (tty, &otio) < 0)
  498.     {
  499.       release_sigint ();
  500.       return;
  501.     }
  502.  
  503.   control_meta_key (0);
  504.   terminal_prepped = 0;
  505.  
  506.   release_sigint ();
  507. #endif /* !_GO32_ */
  508. }
  509.  
  510. /* **************************************************************** */
  511. /*                                    */
  512. /*            Bogus Flow Control                  */
  513. /*                                    */
  514. /* **************************************************************** */
  515.  
  516. int
  517. rl_restart_output (count, key)
  518.      int count, key;
  519. {
  520.   int fildes = fileno (rl_outstream);
  521. #if defined (TIOCSTART)
  522. #if defined (apollo)
  523.   ioctl (&fildes, TIOCSTART, 0);
  524. #else
  525.   ioctl (fildes, TIOCSTART, 0);
  526. #endif /* apollo */
  527.  
  528. #else /* !TIOCSTART */
  529. #  if defined (TERMIOS_TTY_DRIVER)
  530. #    if defined (__ksr1__)
  531.   if (ksrflow)
  532.     {
  533.       ksrflow = 0;
  534.       tcflow (fildes, TCOON);
  535.     }
  536. #    else /* !ksr1 */
  537.   tcflow (fildes, TCOON);        /* Simulate a ^Q. */
  538. #    endif /* !ksr1 */
  539. #  else /* !TERMIOS_TTY_DRIVER */
  540. #    if defined (TCXONC)
  541.   ioctl (fildes, TCXONC, TCOON);
  542. #    endif /* TCXONC */
  543. #  endif /* !TERMIOS_TTY_DRIVER */
  544. #endif /* !TIOCSTART */
  545.  
  546.   return 0;
  547. }
  548.  
  549. int
  550. rl_stop_output (count, key)
  551.      int count, key;
  552. {
  553.   int fildes = fileno (rl_instream);
  554.  
  555. #if defined (TIOCSTOP)
  556. # if defined (apollo)
  557.   ioctl (&fildes, TIOCSTOP, 0);
  558. # else
  559.   ioctl (fildes, TIOCSTOP, 0);
  560. # endif /* apollo */
  561. #else /* !TIOCSTOP */
  562. # if defined (TERMIOS_TTY_DRIVER)
  563. #  if defined (__ksr1__)
  564.   ksrflow = 1;
  565. #  endif /* ksr1 */
  566.   tcflow (fildes, TCOOFF);
  567. # else
  568. #   if defined (TCXONC)
  569.   ioctl (fildes, TCXONC, TCOON);
  570. #   endif /* TCXONC */
  571. # endif /* !TERMIOS_TTY_DRIVER */
  572. #endif /* !TIOCSTOP */
  573.  
  574.   return 0;
  575. }
  576.  
  577. /* **************************************************************** */
  578. /*                                    */
  579. /*            Default Key Bindings                */
  580. /*                                    */
  581. /* **************************************************************** */
  582. void
  583. rltty_set_default_bindings (kmap)
  584.      Keymap kmap;
  585. {
  586.   TIOTYPE ttybuff;
  587.   int tty = fileno (rl_instream);
  588.  
  589. #if defined (NEW_TTY_DRIVER)
  590.  
  591.   if (get_tty_settings (tty, &ttybuff) == 0)
  592.     {
  593.       if (ttybuff.flags & SGTTY_SET)
  594.     {
  595.       int erase, kill;
  596.  
  597.       erase = ttybuff.sgttyb.sg_erase;
  598.       kill  = ttybuff.sgttyb.sg_kill;
  599.  
  600.       if (erase != -1 && kmap[erase].type == ISFUNC)
  601.         kmap[erase].function = rl_rubout;
  602.  
  603.       if (kill != -1 && kmap[kill].type == ISFUNC)
  604.         kmap[kill].function = rl_unix_line_discard;
  605.     }
  606.  
  607. #  if defined (TIOCGLTC)
  608.  
  609.       if (ttybuff.flags & LTCHARS_SET)
  610.     {
  611.       int werase, nextc;
  612.  
  613.       werase = ttybuff.ltchars.t_werasc;
  614.       nextc = ttybuff.ltchars.t_lnextc;
  615.  
  616.       if (werase != -1 && kmap[werase].type == ISFUNC)
  617.         kmap[werase].function = rl_unix_word_rubout;
  618.  
  619.       if (nextc != -1 && kmap[nextc].type == ISFUNC)
  620.         kmap[nextc].function = rl_quoted_insert;
  621.     }
  622.     }
  623. #  endif /* TIOCGLTC */
  624.  
  625. #else /* !NEW_TTY_DRIVER */
  626.  
  627.   if (get_tty_settings (tty, &ttybuff) == 0)
  628.     {
  629.       unsigned char erase, kill;
  630.  
  631.       erase = ttybuff.c_cc[VERASE];
  632.       kill = ttybuff.c_cc[VKILL];
  633.  
  634.       if (erase != (unsigned char)_POSIX_VDISABLE &&
  635.       kmap[erase].type == ISFUNC)
  636.     kmap[erase].function = rl_rubout;
  637.  
  638.       if (kill != (unsigned char)_POSIX_VDISABLE &&
  639.       kmap[kill].type == ISFUNC)
  640.     kmap[kill].function = rl_unix_line_discard;
  641.  
  642. #  if defined (VLNEXT) && defined (TERMIOS_TTY_DRIVER)
  643.       {
  644.     unsigned char nextc;
  645.  
  646.     nextc = ttybuff.c_cc[VLNEXT];
  647.  
  648.     if (nextc != (unsigned char)_POSIX_VDISABLE &&
  649.         kmap[nextc].type == ISFUNC)
  650.       kmap[nextc].function = rl_quoted_insert;
  651.       }
  652. #  endif /* VLNEXT && TERMIOS_TTY_DRIVER */
  653.  
  654. #  if defined (VWERASE) && defined (TERMIOS_TTY_DRIVER)
  655.       {
  656.     unsigned char werase;
  657.  
  658.     werase = ttybuff.c_cc[VWERASE];
  659.  
  660.     if (werase != (unsigned char)_POSIX_VDISABLE &&
  661.         kmap[werase].type == ISFUNC)
  662.       kmap[werase].function = rl_unix_word_rubout;
  663.       }
  664. #  endif /* VWERASE && TERMIOS_TTY_DRIVER */
  665.     }
  666. #endif /* !NEW_TTY_DRIVER */
  667. }
  668.