summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-08-19 11:07:32 +0000
committerJim Meyering <jim@meyering.net>2000-08-19 11:07:32 +0000
commit0dd04df27f15a5b9df82d4bb0fc4b223acc34c0c (patch)
tree8918632a370b309e14fd63b025a2fb52567a1f03 /src
parentdde8f61f1c2b8d2d606118f67b2c318cca332a12 (diff)
downloadcoreutils-0dd04df27f15a5b9df82d4bb0fc4b223acc34c0c.tar.xz
(writeline): Correct comments.
From Bruno Haible.
Diffstat (limited to 'src')
-rw-r--r--src/comm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/comm.c b/src/comm.c
index eb5d1894c..a7edefbe7 100644
--- a/src/comm.c
+++ b/src/comm.c
@@ -108,7 +108,7 @@ writeline (const struct linebuffer *line, FILE *stream, int class)
case 2:
if (!only_file_2)
return;
- /* Skip the tab stop for case 1, if we are printing case 1. */
+ /* Print a TAB if we printing lines from file 1. */
if (only_file_1)
putc ('\t', stream);
break;
@@ -116,10 +116,10 @@ writeline (const struct linebuffer *line, FILE *stream, int class)
case 3:
if (!both)
return;
- /* Skip the tab stop for case 1, if we are printing case 1. */
+ /* Print a TAB if we printing lines from file 1. */
if (only_file_1)
putc ('\t', stream);
- /* Skip the tab stop for case 2, if we are printing case 2. */
+ /* Print a TAB if we printing lines from file 2. */
if (only_file_2)
putc ('\t', stream);
break;