From: Jim Meyering Date: Fri, 11 Apr 2003 12:44:23 +0000 (+0000) Subject: Remove SPC in SPC-TAB sequence. X-Git-Tag: v5.0.1~713 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3cd987830d35ed168222c18b3bedab060d58169e;p=thirdparty%2Fcoreutils.git Remove SPC in SPC-TAB sequence. --- diff --git a/src/ln.c b/src/ln.c index 0bbd2cb6e5..ef10cac36b 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 cbccb4e860..a0be0f34b7 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. | `--------------------------------------------------------------------------*/