Author: particle
Date: Thu Feb 21 07:48:30 2008
New Revision: 25933
Modified:
trunk/t/codingstd/c_macro_args.t
Log:
[t] ws fixup
Modified: trunk/t/codingstd/c_macro_args.t
==============================================================================
--- trunk/t/codingstd/c_macro_args.t (original)
+++ trunk/t/codingstd/c_macro_args.t Thu Feb 21 07:48:30 2008
@@ -51,8 +51,8 @@
}{}gsx;
# combine lines extended with \\n
- $buf =~ s/\\\n//g;
-
+ $buf =~ s/\\\n//g;
+
if ( $buf =~ m{ ^ \s* \#define \s+ ([a-zA-Z_]+) \( ([^)]+) \)
([^\n]*) }smx ) {
my ($macro,$args,$definition) = ($1, $2, $3);
# for each of these args, verify it's wrapped in parens each time