]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Remove SPC in SPC-TAB sequence.
authorJim Meyering <jim@meyering.net>
Fri, 11 Apr 2003 12:44:23 +0000 (12:44 +0000)
committerJim Meyering <jim@meyering.net>
Fri, 11 Apr 2003 12:44:23 +0000 (12:44 +0000)
src/ln.c
src/ptx.c

index 0bbd2cb6e5dffa599d0e35a95f7099b948f7432f..ef10cac36b171a317ea47da268cad3766c3038ea 100644 (file)
--- 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,
index cbccb4e860a3ead34417e5f0b098b0856744623b..a0be0f34b723f3cba04425a622d173cdcc11952d 100644 (file)
--- 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.   |
 `--------------------------------------------------------------------------*/