Path: utzoo!attcan!uunet!wuarchive!uwm.edu!psuvax1!husc6!cmcl2!adm!lhc!usenet From: usenet@nlm.nih.gov (usenet news poster) Newsgroups: comp.text.tex Subject: Bug fix to Kamal Al-Yahya's detex Message-ID: <1990Sep6.141546.2780@nlm.nih.gov> Date: 6 Sep 90 14:15:46 GMT Reply-To: pkarp@grubby-thicket.nlm.nih.gov () Distribution: na Organization: National Library of Medicine, Bethesda, Md. Lines: 14 The following is a bug fix to Kamal Al-Yahya's "detex" program, more specifically, to the "texexpand" program that expands \input and \include commands. How this program ever worked is beyond me. The erroneous behavior is that it would insert extra random text before the included file. In file Expand.c : 118,119c118 < /* PDK - was strcat - how did this ever work? */ < strcpy(buf,buf2); --- > strcat(buf,buf2);