Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.1 6/24/83; site sdccs6.UUCP Path: utzoo!linus!security!genrad!decvax!sdchema!sdcsvax!sdccs6!ix900 From: ix900@sdccs6.UUCP (ix900) Newsgroups: net.bugs.4bsd Subject: Bug in 4.2 -me macros Message-ID: <1184@sdccs6.UUCP> Date: Sat, 12-Nov-83 19:43:35 EST Article-I.D.: sdccs6.1184 Posted: Sat Nov 12 19:43:35 1983 Date-Received: Thu, 17-Nov-83 23:09:36 EST Organization: U.C. San Diego, Computer Center Lines: 21 There's a minor bug in the -me macro package on 4.2bsd. (This is version 2.14 of the -me macros.) One of the features of -me is the use of an "-rx1" flag in nroff in order to set the line spacing to 1/8 inch when using a 12-pitch printout setting. In the macro package, there's a syntax error in the line where the number register "x" is referenced (line 908-909): .if (1m<0.1i)&(\nx!=0) \ . vs 9p The "!" is misplaced and thus messes up the conditional. (Instead of setting the vertical spacing, it sends "!=0 \ . vs 9p" to the standard output.) Change to: .if (1m<0.1i)&(\nx>0) \ . vs 9 David Sewell University of California, San Diego [...!ucbvax!sdcsvax!]!sdccsu3!sdccs6!ix900