git-gui: Avoid unnecessary global statements when possible
commitd36cd968378cd3e509434b1b9f43f1417fdba57e
authorShawn O. Pearce <spearce@spearce.org>
Thu, 19 Jul 2007 04:43:16 +0000 (19 00:43 -0400)
committerShawn O. Pearce <spearce@spearce.org>
Thu, 19 Jul 2007 04:43:16 +0000 (19 00:43 -0400)
treeba77a3cc080d2d1df4fb0ed6494a58da8b0b014f
parenta870ddc0997881d5e73c0ec4562f3521274c5960
git-gui: Avoid unnecessary global statements when possible

Running global takes slightly longer than just accessing the variable
via its package name, especially if the variable is just only once in
the procedure, or isn't even used at all in the procedure.  So this is
a minor cleanup for some of our commonly invoked procedures.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
git-gui.sh