CVSROOT: /cvs Module name: src Changes by: mill...@cvs.openbsd.org 2016/10/18 15:06:52
Modified files: usr.bin/cvs : diff3.c usr.bin/diff3 : diff3prog.c usr.bin/rcs : diff3.c Log message: Using bitwise OR along with two assignments in the conditional of a while() loop is a trap for the unwary programmer (albeit a clever trap). Break this up into two separate assignments and using boolean OR for clarity. OK otto@