summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-04-11 12:44:23 +0000
committerJim Meyering <jim@meyering.net>2003-04-11 12:44:23 +0000
commit3cd987830d35ed168222c18b3bedab060d58169e (patch)
tree115355c6b8fd72bf00c659406b4be6fb82ce84b2 /src
parent0893227b13962acb4ec9128e97171f1e22cc49ae (diff)
downloadcoreutils-3cd987830d35ed168222c18b3bedab060d58169e.tar.xz
Remove SPC in SPC-TAB sequence.
Diffstat (limited to 'src')
-rw-r--r--src/ln.c8
-rw-r--r--src/ptx.c4
2 files changed, 6 insertions, 6 deletions
diff --git a/src/ln.c b/src/ln.c
index 0bbd2cb6e..ef10cac36 100644
--- a/src/ln.c
+++ b/src/ln.c
@@ -1,5 +1,5 @@
/* `ln' program to create links between files.
- Copyright (C) 86, 89, 90, 91, 1995-2002 Free Software Foundation, Inc.
+ Copyright (C) 86, 89, 90, 91, 1995-2003 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -229,8 +229,8 @@ do_link (const char *source, const char *dest)
&& source_stats.st_dev == dest_stats.st_dev
&& source_stats.st_ino == dest_stats.st_ino
/* The following detects whether removing DEST will also remove
- SOURCE. If the file has only one link then both are surely
- the same link. Otherwise check whether they point to the same
+ SOURCE. If the file has only one link then both are surely
+ the same link. Otherwise check whether they point to the same
name in the same directory. */
&& (source_stats.st_nlink == 1 || same_name (source, dest)))
{
@@ -427,7 +427,7 @@ main (int argc, char **argv)
switch (c)
{
case 0: /* Long-named option. */
- break;
+ break;
case 'V': /* FIXME: this is deprecated. Remove it in 2001. */
error (0, 0,
diff --git a/src/ptx.c b/src/ptx.c
index cbccb4e86..a0be0f34b 100644
--- a/src/ptx.c
+++ b/src/ptx.c
@@ -505,7 +505,7 @@ initialize_regex (void)
| This routine will attempt to swallow a whole file name FILE_NAME into a |
| contiguous region of memory and return a description of it into BLOCK. |
| Standard input is assumed whenever FILE_NAME is NULL, empty or "-". |
-| |
+| |
| Previously, in some cases, white space compression was attempted while |
| inputting text. This was defeating some regexps like default end of |
| sentence, which checks for two consecutive spaces. If white space |
@@ -603,7 +603,7 @@ swallow_file_in_memory (const char *file_name, BLOCK *block)
| Compare two words, FIRST and SECOND, and return 0 if they are identical. |
| Return less than 0 if the first word goes before the second; return |
| greater than 0 if the first word goes after the second. |
-| |
+| |
| If a word is indeed a prefix of the other, the shorter should go first. |
`--------------------------------------------------------------------------*/