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

⟦63cb3e2bd⟧ TextFile

    Length: 336 (0x150)
    Types: TextFile
    Names: »newwin.c.pat«

Derivation

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

TextFile

*** libcurses42/newwin.c	Thu Nov 17 11:03:02 1983
--- libcurses/newwin.c	Wed Jul 24 13:27:23 1985
***************
*** 117,118
  
  # ifdef	DEBUG

--- 117,125 -----
  
+ #ifndef wantamess
+ 	if (by < 0 || bx < 0 || nl <= 0 || nc <= 0)
+ 		return(NULL);
+ 	if (by+nl > LINES || bx+nc > COLS)
+ 		return(NULL);
+ #endif
+ 
  # ifdef	DEBUG