bug-gnu-utils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

diffutils: C labels misdetected as functions (Was: [PATCH 1/2] run scrip


From: Simon Arlott
Subject: diffutils: C labels misdetected as functions (Was: [PATCH 1/2] run scripts/Lindent on it to match Documentation/CodingStyle)
Date: Sat, 21 Jul 2007 20:17:52 +0100
User-agent: Thunderbird 2.0.0.0 (X11/20070326)

(Bcc: address@hidden)
The patch below stops diffutils treating C labels starting in column 1 as 
function names.

On 21/07/07 14:52, Matthew Wilcox wrote:
> On Sat, Jul 21, 2007 at 07:11:01AM +0100, Simon Arlott wrote:
>> Changing the code to fix a utility bug is madness. I think it's been
>> fixed too...
> 
> I just downloaded the source from CVS and it hasn't:
> 
> --- test1.c     2007-07-21 09:49:02.000000000 -0400
> +++ test2.c     2007-07-21 09:49:12.000000000 -0400
> @@ -8,5 +8,4 @@ flibble:
>         zero
>         one
> -       two
>         three
>  }
> 
> Tell you what, why don't you fix it?  Here's how to get the source:
> cvs -d:pserver:address@hidden:/sources/diffutils co diffutils
> 
> I'm sure you'll figure it out from there.
> 

---
Index: diff.c
===================================================================
RCS file: /sources/diffutils/diffutils/src/diff.c,v
retrieving revision 1.45
diff -U 4 -r1.45 diff.c
--- diff.c      19 Jul 2007 17:45:29 -0000      1.45
+++ diff.c      21 Jul 2007 19:13:23 -0000
@@ -430,9 +430,9 @@
          break;

        case 'p':
          show_c_function = true;
-         add_regexp (&function_regexp_list, "^[[:alpha:]$_]");
+         add_regexp (&function_regexp_list, "^[[:alpha:]$_](|.*[^:])$");
          break;

        case 'P':
          unidirectional_new_file = true;


-- 
Simon Arlott




reply via email to

[Prev in Thread] Current Thread [Next in Thread]