[PATCH] hgk: ignore ctrl-z as EOF on windows

Andrew Shadura andrew at shadura.me
Sat Mar 15 13:19:42 CDT 2014


# HG changeset patch
# User Andrew Shadura <andrew at shadura.me>
# Date 1394894030 -3600
#      Sat Mar 15 15:33:50 2014 +0100
# Node ID 242d091f03284062f1ca4c270e7020f117d79eb5
# Parent  05267e6e94dd36461d9018743540506c65cabcf1
hgk: ignore ctrl-z as EOF on windows

Port a patch from gitk. Original description:

Cygwin's Tcl is configured to honor any occurence of ctrl-z as an
end-of-file marker, while some commits in the git repository and possibly
elsewhere include that character in the commit comment. This causes gitk
ignore commit history following such a comment and incorrect graphs. This
change affects only Windows as Tcl on other platforms already has
eofchar == {}. This fixes problems noted by me and by Ray Lehtiniemi, and
the fix was suggested by Shawn Pierce.

Signed-off-by: Mark Levedahl <mdl123 at verizon.net>
Signed-off-by: Paul Mackerras <paulus at samba.org>

diff --git a/contrib/hgk b/contrib/hgk
--- a/contrib/hgk
+++ b/contrib/hgk
@@ -208,7 +208,7 @@ proc getcommits {rargs} {
 	exit 1
     }
     set leftover {}
-    fconfigure $commfd -blocking 0 -translation lf
+    fconfigure $commfd -blocking 0 -translation lf -eofchar {}
     fileevent $commfd readable [list getcommitlines $commfd]
     $canv delete all
     $canv create text 3 3 -anchor nw -text "Reading commits..." \


More information about the Mercurial-devel mailing list