git-gui: Don't attempt to inline array reads in methods
authorShawn O. Pearce <spearce@spearce.org>
Wed, 9 May 2007 01:31:31 +0000 (21:31 -0400)
committerShawn O. Pearce <spearce@spearce.org>
Wed, 9 May 2007 01:38:54 +0000 (21:38 -0400)
If a variable reference to a field is to an array, and it is
the only reference to that field in that method we cannot make
it an inlined [set foo] call as the regexp was converting the
Tcl code wrong. We were producing "[set foo](x)" for "$foo(x)",
and that isn't valid Tcl when foo is an array. So we just punt
if the only occurance has a ( after it.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
No differences found