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 - metrics - download
Index: T t

⟦8a554aebf⟧ TextFile

    Length: 1123 (0x463)
    Types: TextFile
    Names: »transfig-V2R1-pl1«

Derivation

└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦c319c2751⟧ »unix3.0/TeX3.0.tar.Z« 
        └─⟦036c765ac⟧ 
            └─⟦this⟧ »TeX3.0/TeXgraphics/transfig/transfig-V2R1-pl1« 

TextFile

*** patchlevel.h.sav	Mon May 14 10:28:07 1990
--- patchlevel.h	Mon May 14 10:26:04 1990
***************
*** 0 ****
--- 1 ----
+ #define PATCHLEVEL 1
*** fig2dev/read.c.sav	Mon Apr 23 20:04:38 1990
--- fig2dev/read.c	Mon May 14 20:55:15 1990
***************
*** 119,128 ****
  
  	bzero((char*)obj, COMOBJ_SIZE);
  	(void)fgets(buf, BUF_SIZE, fp);	/* get the version line */
! 	tfx_flag = (!strncmp(&buf[strlen(buf)-3], "TFX", 3)); /* check for TFX */
! 	v2_flag = (!strncmp(buf, "#FIG 2", 6));	/* v2.0 and later have extra
! 						   field for arc_box radius */
! 	x_flag = v2_flag || (!strncmp(buf, "#FIG 1.4X", 9));	/* non-TFX */
  
  	line_no++;
  	if (get_line(fp) < 0) {
--- 119,133 ----
  
  	bzero((char*)obj, COMOBJ_SIZE);
  	(void)fgets(buf, BUF_SIZE, fp);	/* get the version line */
! 
! 	/* check for TFX */
! 	tfx_flag = (!strncmp(&buf[strlen(buf)-4], "TFX", 3));
! 
! 	/* v2.0 and later have extra field for arc_box radius */
! 	v2_flag = (!strncmp(buf, "#FIG 2", 6));
! 
! 	/* 1.4X or v2.0 */
! 	x_flag = !tfx_flag && (v2_flag || (!strncmp(buf, "#FIG 1.4X", 9)));
  
  	line_no++;
  	if (get_line(fp) < 0) {
▶1a◀