Xref: utzoo comp.unix.ultrix:2691 comp.sys.dec:2548 Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!tut.cis.ohio-state.edu!snorkelwacker!mintaka!kanga.lcs.mit.edu!jim From: jim@kanga.lcs.mit.edu (Jim Fulton) Newsgroups: comp.unix.ultrix,comp.sys.dec Subject: Re: Problems with forwarding PostScript files Summary: hack to mh to avoid - processing Message-ID: <1990Feb1.154714.22997@mintaka.lcs.mit.edu> Date: 1 Feb 90 15:47:14 GMT References: <807@granite.dec.com> <2646@bacchus.dec.com> Sender: news@mintaka.lcs.mit.edu Reply-To: jim@expo.lcs.mit.edu (Jim Fulton) Organization: MIT X Consortium Lines: 26 Here is a gross hack that we use to avoid the ugly "-" processing done in the cpydgst() routine: *** /tmp/,RCSt1a18322 Thu Feb 1 10:41:23 1990 --- mh/sbr/cpydgst.c Tue Apr 18 17:44:46 1989 *************** *** 33,38 **** --- 33,41 ---- register char *ifile, *ofile; { + #ifdef NODASHPROCESSING + cpydata (in, out, ifile, ofile); + #else register int i, state; register char *cp, *************** *** 67,70 **** --- 70,74 ---- if (i == NOTOK) adios (ifile, "error reading"); flush (); + #endif }