]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - ncurses/base/lib_restart.c
ncurses 5.0
[ncurses.git] / ncurses / base / lib_restart.c
similarity index 74%
rename from ncurses/lib_restart.c
rename to ncurses/base/lib_restart.c
index 6dc183144be4ac366a56a62973638ff8c26b3d80..de0182f4269148b393f05d1463c3b0e0a0db1c52 100644 (file)
 
 #include <term.h>      /* lines, columns, cur_term */
 
-MODULE_ID("$Id: lib_restart.c,v 1.16 1998/02/11 12:13:57 tom Exp $")
+MODULE_ID("$Id: lib_restart.c,v 1.2 1999/07/24 20:10:04 tom Exp $")
 
-#undef tabs
-
-#ifdef TAB3
-# define tabs TAB3
-#else
-# ifdef XTABS
-#  define tabs XTABS
-# else
-#  ifdef OXTABS
-#   define tabs OXTABS
-#  else
-#   define tabs 0
-#  endif
-# endif
-#endif
-
-int def_shell_mode(void)
-{
-       T((T_CALLED("def_shell_mode()")));
-
-       /*
-        * Turn off the XTABS bit in the tty structure if it was on.  If XTABS
-        * was on, remove the tab and backtab capabilities.
-        */
-
-       if (_nc_get_curterm(&cur_term->Ottyb) != OK)
-               returnCode(ERR);
-#ifdef TERMIOS
-       if (cur_term->Ottyb.c_oflag & tabs)
-               tab = back_tab = NULL;
-#else
-       if (cur_term->Ottyb.sg_flags & XTABS)
-               tab = back_tab = NULL;
-#endif
-       returnCode(OK);
-}
-
-int def_prog_mode(void)
-{
-       T((T_CALLED("def_prog_mode()")));
-
-       if (_nc_get_curterm(&cur_term->Nttyb) != OK)
-               returnCode(ERR);
-#ifdef TERMIOS
-       cur_term->Nttyb.c_oflag &= ~tabs;
-#else
-       cur_term->Nttyb.sg_flags &= ~XTABS;
-#endif
-       returnCode(OK);
-}
-
-int restartterm(const char *term, int filenum, int *errret)
+int restartterm(NCURSES_CONST char *termp, int filenum, int *errret)
 {
 int saveecho = SP->_echo;
 int savecbreak = SP->_cbreak;
 int saveraw = SP->_raw;
 int savenl = SP->_nl;
 
-       T((T_CALLED("restartterm(%s,%d,%p)"), term, filenum, errret));
+       T((T_CALLED("restartterm(%s,%d,%p)"), termp, filenum, errret));
 
-       setupterm(term, filenum, errret);
+       setupterm(termp, filenum, errret);
 
        if (saveecho)
                echo();