[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <1297049972.17359.5.camel@Joe-Laptop>
Date: Sun, 06 Feb 2011 19:39:32 -0800
From: Joe Perches <joe@...ches.com>
To: Dan Carpenter <error27@...il.com>
Cc: Wolfram Sang <w.sang@...gutronix.de>, linux-kernel@...r.kernel.org,
devel@...verdev.osuosl.org
Subject: Re: rename_rev.pl script for reviewing renames
On Sun, 2011-02-06 at 15:25 +0300, Dan Carpenter wrote:
> Or if you have a camel case script that changes "ThisVariable" to
> "this_variable". Then the command would be:
> git show c659c38 | ./rename_rev.pl -ea '$_ = lc' -ea 's/_//g'
> Which changes everything to lower case and strips out all the
> underscores. You might want to combine it with some other flags:
> git show c659c38 | ./rename_rev.pl -nc \
> -e 's/TLanPrivateInfo/struct tlan_priv/' \
> -e 's/TLanList/struct tlan_list/' \
> -ea '$_ = lc' -ea 's/_//g'
Hi Dan.
I think you'll need to add '\b$1\b' to your tests
otherwise your first example will check things like
"TLanPrivateInfoType" as well.
> What I would like is if there was some way to ignore changes which just
> introduced new lines, but didn't affect runtime behavior. I'm not sure
> how to do that.
Any object change will affect runtime behavior.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists