1 /* rltty.c -- functions to prepare and restore the terminal for readline's
4 /* Copyright (C) 1992 Free Software Foundation, Inc.
6 This file is part of the GNU Readline Library, a library for
7 reading lines of text with interactive input and history editing.
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 2, or
12 (at your option) any later version.
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.
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 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
23 #define READLINE_LIBRARY
25 #if defined (HAVE_CONFIG_H)
29 #include <sys/types.h>
34 #if defined (HAVE_UNISTD_H)
36 #endif /* HAVE_UNISTD_H */
40 #if defined (GWINSZ_IN_SYS_IOCTL)
41 # include <sys/ioctl.h>
42 #endif /* GWINSZ_IN_SYS_IOCTL */
46 #include "rlprivate.h"
52 rl_vintfunc_t
*rl_prep_term_function
= rl_prep_terminal
;
53 rl_voidfunc_t
*rl_deprep_term_function
= rl_deprep_terminal
;
55 static void block_sigint
PARAMS((void));
56 static void release_sigint
PARAMS((void));
58 static void set_winsize
PARAMS((int));
60 /* **************************************************************** */
62 /* Signal Management */
64 /* **************************************************************** */
66 #if defined (HAVE_POSIX_SIGNALS)
67 static sigset_t sigint_set
, sigint_oset
;
68 #else /* !HAVE_POSIX_SIGNALS */
69 # if defined (HAVE_BSD_SIGNALS)
70 static int sigint_oldmask
;
71 # endif /* HAVE_BSD_SIGNALS */
72 #endif /* !HAVE_POSIX_SIGNALS */
74 static int sigint_blocked
;
76 /* Cause SIGINT to not be delivered until the corresponding call to
84 #if defined (HAVE_POSIX_SIGNALS)
85 sigemptyset (&sigint_set
);
86 sigemptyset (&sigint_oset
);
87 sigaddset (&sigint_set
, SIGINT
);
88 sigprocmask (SIG_BLOCK
, &sigint_set
, &sigint_oset
);
89 #else /* !HAVE_POSIX_SIGNALS */
90 # if defined (HAVE_BSD_SIGNALS)
91 sigint_oldmask
= sigblock (sigmask (SIGINT
));
92 # else /* !HAVE_BSD_SIGNALS */
93 # if defined (HAVE_USG_SIGHOLD)
95 # endif /* HAVE_USG_SIGHOLD */
96 # endif /* !HAVE_BSD_SIGNALS */
97 #endif /* !HAVE_POSIX_SIGNALS */
102 /* Allow SIGINT to be delivered. */
106 if (sigint_blocked
== 0)
109 #if defined (HAVE_POSIX_SIGNALS)
110 sigprocmask (SIG_SETMASK
, &sigint_oset
, (sigset_t
*)NULL
);
112 # if defined (HAVE_BSD_SIGNALS)
113 sigsetmask (sigint_oldmask
);
114 # else /* !HAVE_BSD_SIGNALS */
115 # if defined (HAVE_USG_SIGHOLD)
117 # endif /* HAVE_USG_SIGHOLD */
118 # endif /* !HAVE_BSD_SIGNALS */
119 #endif /* !HAVE_POSIX_SIGNALS */
124 /* **************************************************************** */
126 /* Saving and Restoring the TTY */
128 /* **************************************************************** */
130 /* Non-zero means that the terminal is in a prepped state. */
131 static int terminal_prepped
;
133 static _RL_TTY_CHARS _rl_tty_chars
, _rl_last_tty_chars
;
135 /* If non-zero, means that this process has called tcflow(fd, TCOOFF)
136 and output is suspended. */
137 #if defined (__ksr1__)
141 /* Dummy call to force a backgrounded readline to stop before it tries
142 to get the tty settings. */
147 #if defined (TIOCGWINSZ)
150 if (ioctl (tty
, TIOCGWINSZ
, &w
) == 0)
151 (void) ioctl (tty
, TIOCSWINSZ
, &w
);
152 #endif /* TIOCGWINSZ */
155 #if defined (NEW_TTY_DRIVER)
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
160 #define SGTTY_SET 0x01
161 #define LFLAG_SET 0x02
162 #define TCHARS_SET 0x04
163 #define LTCHARS_SET 0x08
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. */
171 #if defined (TIOCGLTC)
172 struct ltchars ltchars
; /* 4.2 BSD editing characters */
174 int flags
; /* Bitmap saying which parts of the struct are valid. */
177 #define TIOTYPE struct bsdtty
181 static void save_tty_chars
PARAMS((TIOTYPE
*));
182 static int _get_tty_settings
PARAMS((int, TIOTYPE
*));
183 static int get_tty_settings
PARAMS((int, TIOTYPE
*));
184 static int _set_tty_settings
PARAMS((int, TIOTYPE
*));
185 static int set_tty_settings
PARAMS((int, TIOTYPE
*));
187 static void prepare_terminal_settings
PARAMS((int, TIOTYPE
, TIOTYPE
*));
190 save_tty_chars (tiop
)
193 _rl_last_tty_chars
= _rl_tty_chars
;
195 if (tiop
->flags
& SGTTY_SET
)
197 _rl_tty_chars
.t_erase
= tiop
->sgttyb
.sg_erase
;
198 _rl_tty_chars
.t_kill
= tiop
->sgttyb
.sg_kill
;
201 if (tiop
->flags
& TCHARS_SET
)
203 _rl_tty_chars
.t_intr
= tiop
->tchars
.t_intrc
;
204 _rl_tty_chars
.t_quit
= tiop
->tchars
.t_quitc
;
205 _rl_tty_chars
.t_start
= tiop
->tchars
.t_startc
;
206 _rl_tty_chars
.t_stop
= tiop
->tchars
.t_stopc
;
207 _rl_tty_chars
.t_eof
= tiop
->tchars
.t_eofc
;
208 _rl_tty_chars
.t_eol
= '\n';
209 _rl_tty_chars
.t_eol2
= tiop
->tchars
.t_brkc
;
212 if (tiop
->flags
& LTCHARS_SET
)
214 _rl_tty_chars
.t_susp
= tiop
->ltchars
.t_suspc
;
215 _rl_tty_chars
.t_dsusp
= tiop
->ltchars
.t_dsuspc
;
216 _rl_tty_chars
.t_reprint
= tiop
->ltchars
.t_rprntc
;
217 _rl_tty_chars
.t_flush
= tiop
->ltchars
.t_flushc
;
218 _rl_tty_chars
.t_werase
= tiop
->ltchars
.t_werasc
;
219 _rl_tty_chars
.t_lnext
= tiop
->ltchars
.t_lnextc
;
222 _rl_tty_chars
.t_status
= -1;
226 get_tty_settings (tty
, tiop
)
230 #if defined (TIOCGWINSZ)
234 tiop
->flags
= tiop
->lflag
= 0;
236 if (ioctl (tty
, TIOCGETP
, &(tiop
->sgttyb
)) < 0)
238 tiop
->flags
|= SGTTY_SET
;
240 #if defined (TIOCLGET)
241 if (ioctl (tty
, TIOCLGET
, &(tiop
->lflag
)) == 0)
242 tiop
->flags
|= LFLAG_SET
;
245 #if defined (TIOCGETC)
246 if (ioctl (tty
, TIOCGETC
, &(tiop
->tchars
)) == 0)
247 tiop
->flags
|= TCHARS_SET
;
250 #if defined (TIOCGLTC)
251 if (ioctl (tty
, TIOCGLTC
, &(tiop
->ltchars
)) == 0)
252 tiop
->flags
|= LTCHARS_SET
;
259 set_tty_settings (tty
, tiop
)
263 if (tiop
->flags
& SGTTY_SET
)
265 ioctl (tty
, TIOCSETN
, &(tiop
->sgttyb
));
266 tiop
->flags
&= ~SGTTY_SET
;
268 readline_echoing_p
= 1;
270 #if defined (TIOCLSET)
271 if (tiop
->flags
& LFLAG_SET
)
273 ioctl (tty
, TIOCLSET
, &(tiop
->lflag
));
274 tiop
->flags
&= ~LFLAG_SET
;
278 #if defined (TIOCSETC)
279 if (tiop
->flags
& TCHARS_SET
)
281 ioctl (tty
, TIOCSETC
, &(tiop
->tchars
));
282 tiop
->flags
&= ~TCHARS_SET
;
286 #if defined (TIOCSLTC)
287 if (tiop
->flags
& LTCHARS_SET
)
289 ioctl (tty
, TIOCSLTC
, &(tiop
->ltchars
));
290 tiop
->flags
&= ~LTCHARS_SET
;
298 prepare_terminal_settings (meta_flag
, oldtio
, tiop
)
300 TIOTYPE oldtio
, *tiop
;
302 readline_echoing_p
= (oldtio
.sgttyb
.sg_flags
& ECHO
);
304 /* Copy the original settings to the structure we're going to use for
306 tiop
->sgttyb
= oldtio
.sgttyb
;
307 tiop
->lflag
= oldtio
.lflag
;
308 #if defined (TIOCGETC)
309 tiop
->tchars
= oldtio
.tchars
;
311 #if defined (TIOCGLTC)
312 tiop
->ltchars
= oldtio
.ltchars
;
314 tiop
->flags
= oldtio
.flags
;
316 /* First, the basic settings to put us into character-at-a-time, no-echo
318 tiop
->sgttyb
.sg_flags
&= ~(ECHO
| CRMOD
);
319 tiop
->sgttyb
.sg_flags
|= CBREAK
;
321 /* If this terminal doesn't care how the 8th bit is used, then we can
322 use it for the meta-key. If only one of even or odd parity is
323 specified, then the terminal is using parity, and we cannot. */
325 # define ANYP (EVENP | ODDP)
327 if (((oldtio
.sgttyb
.sg_flags
& ANYP
) == ANYP
) ||
328 ((oldtio
.sgttyb
.sg_flags
& ANYP
) == 0))
330 tiop
->sgttyb
.sg_flags
|= ANYP
;
332 /* Hack on local mode flags if we can. */
333 #if defined (TIOCLGET)
334 # if defined (LPASS8)
335 tiop
->lflag
|= LPASS8
;
337 #endif /* TIOCLGET */
340 #if defined (TIOCGETC)
341 # if defined (USE_XON_XOFF)
342 /* Get rid of terminal output start and stop characters. */
343 tiop
->tchars
.t_stopc
= -1; /* C-s */
344 tiop
->tchars
.t_startc
= -1; /* C-q */
346 /* If there is an XON character, bind it to restart the output. */
347 if (oldtio
.tchars
.t_startc
!= -1)
348 rl_bind_key (oldtio
.tchars
.t_startc
, rl_restart_output
);
349 # endif /* USE_XON_XOFF */
351 /* If there is an EOF char, bind _rl_eof_char to it. */
352 if (oldtio
.tchars
.t_eofc
!= -1)
353 _rl_eof_char
= oldtio
.tchars
.t_eofc
;
355 # if defined (NO_KILL_INTR)
356 /* Get rid of terminal-generated SIGQUIT and SIGINT. */
357 tiop
->tchars
.t_quitc
= -1; /* C-\ */
358 tiop
->tchars
.t_intrc
= -1; /* C-c */
359 # endif /* NO_KILL_INTR */
360 #endif /* TIOCGETC */
362 #if defined (TIOCGLTC)
363 /* Make the interrupt keys go away. Just enough to make people happy. */
364 tiop
->ltchars
.t_dsuspc
= -1; /* C-y */
365 tiop
->ltchars
.t_lnextc
= -1; /* C-v */
366 #endif /* TIOCGLTC */
369 #else /* !defined (NEW_TTY_DRIVER) */
379 #if defined (TERMIOS_TTY_DRIVER)
380 # define TIOTYPE struct termios
381 # define DRAIN_OUTPUT(fd) tcdrain (fd)
382 # define GETATTR(tty, tiop) (tcgetattr (tty, tiop))
384 # define SETATTR(tty, tiop) (tcsetattr (tty, TCSANOW, tiop))
386 # define SETATTR(tty, tiop) (tcsetattr (tty, TCSADRAIN, tiop))
387 # endif /* !M_UNIX */
389 # define TIOTYPE struct termio
390 # define DRAIN_OUTPUT(fd)
391 # define GETATTR(tty, tiop) (ioctl (tty, TCGETA, tiop))
392 # define SETATTR(tty, tiop) (ioctl (tty, TCSETAW, tiop))
393 #endif /* !TERMIOS_TTY_DRIVER */
397 static void save_tty_chars
PARAMS((TIOTYPE
*));
398 static int _get_tty_settings
PARAMS((int, TIOTYPE
*));
399 static int get_tty_settings
PARAMS((int, TIOTYPE
*));
400 static int _set_tty_settings
PARAMS((int, TIOTYPE
*));
401 static int set_tty_settings
PARAMS((int, TIOTYPE
*));
403 static void prepare_terminal_settings
PARAMS((int, TIOTYPE
, TIOTYPE
*));
406 # define OUTPUT_BEING_FLUSHED(tp) (tp->c_lflag & FLUSHO)
408 # define OUTPUT_BEING_FLUSHED(tp) 0
412 save_tty_chars (tiop
)
415 _rl_last_tty_chars
= _rl_tty_chars
;
417 _rl_tty_chars
.t_eof
= tiop
->c_cc
[VEOF
];
418 _rl_tty_chars
.t_eol
= tiop
->c_cc
[VEOL
];
420 _rl_tty_chars
.t_eol2
= tiop
->c_cc
[VEOL2
];
422 _rl_tty_chars
.t_erase
= tiop
->c_cc
[VERASE
];
424 _rl_tty_chars
.t_werase
= tiop
->c_cc
[VWERASE
];
426 _rl_tty_chars
.t_kill
= tiop
->c_cc
[VKILL
];
428 _rl_tty_chars
.t_reprint
= tiop
->c_cc
[VREPRINT
];
430 _rl_tty_chars
.t_intr
= tiop
->c_cc
[VINTR
];
431 _rl_tty_chars
.t_quit
= tiop
->c_cc
[VQUIT
];
433 _rl_tty_chars
.t_susp
= tiop
->c_cc
[VSUSP
];
436 _rl_tty_chars
.t_dsusp
= tiop
->c_cc
[VDSUSP
];
439 _rl_tty_chars
.t_start
= tiop
->c_cc
[VSTART
];
442 _rl_tty_chars
.t_stop
= tiop
->c_cc
[VSTOP
];
445 _rl_tty_chars
.t_lnext
= tiop
->c_cc
[VLNEXT
];
448 _rl_tty_chars
.t_flush
= tiop
->c_cc
[VDISCARD
];
451 _rl_tty_chars
.t_status
= tiop
->c_cc
[VSTATUS
];
455 #if defined (_AIX) || defined (_AIX41)
456 /* Currently this is only used on AIX */
461 fprintf (stderr
, "readline: warning: %s\n", msg
);
470 if ((tp
->c_oflag
& OPOST
) == 0)
472 rltty_warning ("turning on OPOST for terminal\r");
473 tp
->c_oflag
|= OPOST
|ONLCR
;
479 _get_tty_settings (tty
, tiop
)
487 ioctl_ret
= GETATTR (tty
, tiop
);
495 if (OUTPUT_BEING_FLUSHED (tiop
))
497 #if defined (FLUSHO) && defined (_AIX41)
498 rltty_warning ("turning off output flushing");
499 tiop
->c_lflag
&= ~FLUSHO
;
512 get_tty_settings (tty
, tiop
)
516 #if defined (TIOCGWINSZ)
520 if (_get_tty_settings (tty
, tiop
) < 0)
531 _set_tty_settings (tty
, tiop
)
535 while (SETATTR (tty
, tiop
) < 0)
545 set_tty_settings (tty
, tiop
)
549 if (_set_tty_settings (tty
, tiop
) < 0)
554 #if defined (TERMIOS_TTY_DRIVER)
555 # if defined (__ksr1__)
562 tcflow (tty
, TCOON
); /* Simulate a ^Q. */
565 ioctl (tty
, TCXONC
, 1); /* Simulate a ^Q. */
566 #endif /* !TERMIOS_TTY_DRIVER */
574 prepare_terminal_settings (meta_flag
, oldtio
, tiop
)
576 TIOTYPE oldtio
, *tiop
;
578 readline_echoing_p
= (oldtio
.c_lflag
& ECHO
);
580 tiop
->c_lflag
&= ~(ICANON
| ECHO
);
582 if ((unsigned char) oldtio
.c_cc
[VEOF
] != (unsigned char) _POSIX_VDISABLE
)
583 _rl_eof_char
= oldtio
.c_cc
[VEOF
];
585 #if defined (USE_XON_XOFF)
587 tiop
->c_iflag
&= ~(IXON
| IXOFF
| IXANY
);
589 /* `strict' Posix systems do not define IXANY. */
590 tiop
->c_iflag
&= ~(IXON
| IXOFF
);
592 #endif /* USE_XON_XOFF */
594 /* Only turn this off if we are using all 8 bits. */
595 if (((tiop
->c_cflag
& CSIZE
) == CS8
) || meta_flag
)
596 tiop
->c_iflag
&= ~(ISTRIP
| INPCK
);
598 /* Make sure we differentiate between CR and NL on input. */
599 tiop
->c_iflag
&= ~(ICRNL
| INLCR
);
601 #if !defined (HANDLE_SIGNALS)
602 tiop
->c_lflag
&= ~ISIG
;
604 tiop
->c_lflag
|= ISIG
;
607 tiop
->c_cc
[VMIN
] = 1;
608 tiop
->c_cc
[VTIME
] = 0;
611 if (OUTPUT_BEING_FLUSHED (tiop
))
613 tiop
->c_lflag
&= ~FLUSHO
;
614 oldtio
.c_lflag
&= ~FLUSHO
;
618 /* Turn off characters that we need on Posix systems with job control,
619 just to be sure. This includes ^Y and ^V. This should not really
621 #if defined (TERMIOS_TTY_DRIVER) && defined (_POSIX_VDISABLE)
624 tiop
->c_cc
[VLNEXT
] = _POSIX_VDISABLE
;
628 tiop
->c_cc
[VDSUSP
] = _POSIX_VDISABLE
;
631 #endif /* TERMIOS_TTY_DRIVER && _POSIX_VDISABLE */
633 #endif /* NEW_TTY_DRIVER */
635 /* Put the terminal in CBREAK mode so that we can detect key presses. */
637 rl_prep_terminal (meta_flag
)
643 if (terminal_prepped
)
646 /* Try to keep this function from being INTerrupted. */
649 tty
= fileno (rl_instream
);
651 if (get_tty_settings (tty
, &tio
) < 0)
659 save_tty_chars (&otio
);
661 prepare_terminal_settings (meta_flag
, otio
, &tio
);
663 if (set_tty_settings (tty
, &tio
) < 0)
669 if (_rl_enable_keypad
)
670 _rl_control_keypad (1);
672 fflush (rl_outstream
);
673 terminal_prepped
= 1;
674 RL_SETSTATE(RL_STATE_TERMPREPPED
);
679 /* Restore the terminal's normal settings and modes. */
681 rl_deprep_terminal ()
685 if (!terminal_prepped
)
688 /* Try to keep this function from being interrupted. */
691 tty
= fileno (rl_instream
);
693 if (_rl_enable_keypad
)
694 _rl_control_keypad (0);
696 fflush (rl_outstream
);
698 if (set_tty_settings (tty
, &otio
) < 0)
704 terminal_prepped
= 0;
705 RL_UNSETSTATE(RL_STATE_TERMPREPPED
);
710 /* **************************************************************** */
712 /* Bogus Flow Control */
714 /* **************************************************************** */
717 rl_restart_output (count
, key
)
720 int fildes
= fileno (rl_outstream
);
721 #if defined (TIOCSTART)
723 ioctl (&fildes
, TIOCSTART
, 0);
725 ioctl (fildes
, TIOCSTART
, 0);
728 #else /* !TIOCSTART */
729 # if defined (TERMIOS_TTY_DRIVER)
730 # if defined (__ksr1__)
734 tcflow (fildes
, TCOON
);
737 tcflow (fildes
, TCOON
); /* Simulate a ^Q. */
739 # else /* !TERMIOS_TTY_DRIVER */
740 # if defined (TCXONC)
741 ioctl (fildes
, TCXONC
, TCOON
);
743 # endif /* !TERMIOS_TTY_DRIVER */
744 #endif /* !TIOCSTART */
750 rl_stop_output (count
, key
)
753 int fildes
= fileno (rl_instream
);
755 #if defined (TIOCSTOP)
756 # if defined (apollo)
757 ioctl (&fildes
, TIOCSTOP
, 0);
759 ioctl (fildes
, TIOCSTOP
, 0);
761 #else /* !TIOCSTOP */
762 # if defined (TERMIOS_TTY_DRIVER)
763 # if defined (__ksr1__)
766 tcflow (fildes
, TCOOFF
);
768 # if defined (TCXONC)
769 ioctl (fildes
, TCXONC
, TCOON
);
771 # endif /* !TERMIOS_TTY_DRIVER */
772 #endif /* !TIOCSTOP */
777 /* **************************************************************** */
779 /* Default Key Bindings */
781 /* **************************************************************** */
783 /* Set the system's default editing characters to their readline equivalents
784 in KMAP. Should be static, now that we have rl_tty_set_default_bindings. */
786 rltty_set_default_bindings (kmap
)
790 int tty
= fileno (rl_instream
);
792 #if defined (NEW_TTY_DRIVER)
794 #define SET_SPECIAL(sc, func) \
799 if (ic != -1 && kmap[(unsigned char)ic].type == ISFUNC) \
800 kmap[(unsigned char)ic].function = func; \
804 if (get_tty_settings (tty
, &ttybuff
) == 0)
806 if (ttybuff
.flags
& SGTTY_SET
)
808 SET_SPECIAL (ttybuff
.sgttyb
.sg_erase
, rl_rubout
);
809 SET_SPECIAL (ttybuff
.sgttyb
.sg_kill
, rl_unix_line_discard
);
812 # if defined (TIOCGLTC)
813 if (ttybuff
.flags
& LTCHARS_SET
)
815 SET_SPECIAL (ttybuff
.ltchars
.t_werasc
, rl_unix_word_rubout
);
816 SET_SPECIAL (ttybuff
.ltchars
.t_lnextc
, rl_quoted_insert
);
818 # endif /* TIOCGLTC */
821 #else /* !NEW_TTY_DRIVER */
823 #define SET_SPECIAL(sc, func) \
827 uc = ttybuff.c_cc[sc]; \
828 if (uc != (unsigned char)_POSIX_VDISABLE && kmap[uc].type == ISFUNC) \
829 kmap[uc].function = func; \
833 if (get_tty_settings (tty
, &ttybuff
) == 0)
835 SET_SPECIAL (VERASE
, rl_rubout
);
836 SET_SPECIAL (VKILL
, rl_unix_line_discard
);
838 # if defined (VLNEXT) && defined (TERMIOS_TTY_DRIVER)
839 SET_SPECIAL (VLNEXT
, rl_quoted_insert
);
840 # endif /* VLNEXT && TERMIOS_TTY_DRIVER */
842 # if defined (VWERASE) && defined (TERMIOS_TTY_DRIVER)
843 SET_SPECIAL (VWERASE
, rl_unix_word_rubout
);
844 # endif /* VWERASE && TERMIOS_TTY_DRIVER */
846 #endif /* !NEW_TTY_DRIVER */
849 /* New public way to set the system default editing chars to their readline
852 rl_tty_set_default_bindings (kmap
)
855 rltty_set_default_bindings (kmap
);
858 #if defined (HANDLE_SIGNALS)
860 #if defined (NEW_TTY_DRIVER)
862 _rl_disable_tty_signals ()
868 _rl_restore_tty_signals ()
874 static TIOTYPE sigstty
, nosigstty
;
875 static int tty_sigs_disabled
= 0;
878 _rl_disable_tty_signals ()
880 if (tty_sigs_disabled
)
883 if (_get_tty_settings (fileno (rl_instream
), &sigstty
) < 0)
888 nosigstty
.c_lflag
&= ~ISIG
;
889 nosigstty
.c_iflag
&= ~IXON
;
891 if (_set_tty_settings (fileno (rl_instream
), &nosigstty
) < 0)
892 return (_set_tty_settings (fileno (rl_instream
), &sigstty
));
894 tty_sigs_disabled
= 1;
899 _rl_restore_tty_signals ()
903 if (tty_sigs_disabled
== 0)
906 r
= _set_tty_settings (fileno (rl_instream
), &sigstty
);
909 tty_sigs_disabled
= 0;
913 #endif /* !NEW_TTY_DRIVER */
915 #endif /* HANDLE_SIGNALS */