DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download

⟦75a3b311c⟧ TextFile

    Length: 485 (0x1e5)
    Types: TextFile
    Names: »initscr.c.pat«

Derivation

└─⟦87ddcff64⟧ Bits:30001253 CPHDIST85 Tape, 1985 Autumn Conference Copenhagen
    └─ ⟦this⟧ »cph85dist/new_curses/initscr.c.pat« 

TextFile

*** libcurses42/initscr.c	Thu Nov 17 11:03:00 1983
--- libcurses/initscr.c	Sun Jul 21 17:59:02 1985
***************
*** 15,16
  	reg char	*sp;
  	int		tstp();

--- 15,17 -----
  	reg char	*sp;
+ 	int		(*oldtstp)();	/* Ron Wessels, uthub.149, May 1984 */
  	int		tstp();
***************
*** 41,43
  # ifdef SIGTSTP
! 	signal(SIGTSTP, tstp);
  # endif

--- 42,45 -----
  # ifdef SIGTSTP
! 	if ((oldtstp = signal(SIGTSTP, tstp)) != SIG_DFL)
! 		(void) signal(SIGTSTP, oldtstp);
  # endif