=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/cvs/diff.c,v retrieving revision 1.58 retrieving revision 1.59 diff -c -r1.58 -r1.59 *** src/usr.bin/cvs/diff.c 2005/10/07 23:59:56 1.58 --- src/usr.bin/cvs/diff.c 2005/10/08 00:49:18 1.59 *************** *** 1,4 **** ! /* $OpenBSD: diff.c,v 1.58 2005/10/07 23:59:56 niallo Exp $ */ /* * Copyright (C) Caldera International Inc. 2001-2002. * All rights reserved. --- 1,4 ---- ! /* $OpenBSD: diff.c,v 1.59 2005/10/08 00:49:18 joris Exp $ */ /* * Copyright (C) Caldera International Inc. 2001-2002. * All rights reserved. *************** *** 1469,1476 **** nc = f[i] - f[i - 1]; if (diff_format != D_IFDEF && ch != '\0') { diff_output("%c", ch); ! if (Tflag && (diff_format == D_NORMAL || diff_format == D_CONTEXT ! || diff_format == D_UNIFIED)) diff_output("\t"); else if (diff_format != D_UNIFIED) diff_output(" "); --- 1469,1477 ---- nc = f[i] - f[i - 1]; if (diff_format != D_IFDEF && ch != '\0') { diff_output("%c", ch); ! if (Tflag && (diff_format == D_NORMAL || ! diff_format == D_CONTEXT || ! diff_format == D_UNIFIED)) diff_output("\t"); else if (diff_format != D_UNIFIED) diff_output(" "); *************** *** 1481,1487 **** if (diff_format == D_RCSDIFF) warnx("No newline at end of file"); else ! diff_output("\n\\ No newline at end of file"); return (0); } if (c == '\t' && tflag) { --- 1482,1489 ---- if (diff_format == D_RCSDIFF) warnx("No newline at end of file"); else ! diff_output("\n\\ No newline at end of " ! "file"); return (0); } if (c == '\t' && tflag) {