aboutsummaryrefslogtreecommitdiffstats
path: root/gitk
diff options
context:
space:
mode:
authorPaul Mackerras <paulus@samba.org>2005-05-15 21:49:26 +0000
committerPaul Mackerras <paulus@samba.org>2005-05-15 21:49:26 +0000
commite47120cb9390a32e3e52f39fb53373d1288c04b8 (patch)
treeaeb031e8bd7aa6d18e722d51d3a5513d3f09d8ef /gitk
parent276819b35bb457648d91ee431c29ad5af3c20bef (diff)
downloadgit-e47120cb9390a32e3e52f39fb53373d1288c04b8.tar.gz
Fix stder -> stderr
Diffstat (limited to 'gitk')
-rwxr-xr-xgitk6
1 files changed, 3 insertions, 3 deletions
diff --git a/gitk b/gitk
index fbc6497a14..5ac69ed76c 100755
--- a/gitk
+++ b/gitk
@@ -7,7 +7,7 @@ exec wish "$0" -- "${1+$@}"
# and distributed under the terms of the GNU General Public Licence,
# either version 2, or (at your option) any later version.
-# CVS $Revision: 1.10 $
+# CVS $Revision: 1.11 $
proc getcommits {rargs} {
global commits commfd phase canv mainfont
@@ -17,7 +17,7 @@ proc getcommits {rargs} {
set commits {}
set phase getcommits
if [catch {set commfd [open "|git-rev-tree $rargs" r]} err] {
- puts stder "Error executing git-rev-tree: $err"
+ puts stderr "Error executing git-rev-tree: $err"
exit 1
}
fconfigure $commfd -blocking 0
@@ -261,7 +261,7 @@ Copyright © 2005 Paul Mackerras
Use and redistribute under the terms of the GNU General Public License
-(CVS $Revision: 1.10 $)} \
+(CVS $Revision: 1.11 $)} \
-justify center -aspect 400
pack $w.m -side top -fill x -padx 20 -pady 20
button $w.ok -text Close -command "destroy $w"