1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-08-14 06:03:46 +02:00

Remove SPC in SPC-TAB sequence.

This commit is contained in:
Jim Meyering
2003-04-11 12:44:23 +00:00
parent 0893227b13
commit 3cd987830d
2 changed files with 6 additions and 6 deletions
+4 -4
View File
@@ -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,
+2 -2
View File
@@ -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. |
`--------------------------------------------------------------------------*/