[PATCH] gitk doesn't handle filenames with space correctly

STALE3709d

2 messages, 2 authors, 2016-06-15 · open the first message on its own page

[PATCH] gitk doesn't handle filenames with space correctly

From: Frédéric Jolliton <hidden>
Date: 2016-06-15 22:43:03

Hi,

Here is an attempt to fix gitk such that it can display filenames with
space correctly, in the right column (Patch/Tree). I don't know TCL, so
probably that a better solution exists.
--- gitk.orig	2007-04-07 02:36:05.000000000 +0200
+++ gitk	2007-04-07 03:13:16.000000000 +0200
@@ -4114,8 +4114,7 @@
 
     while {[gets $gtf line] >= 0} {
 	if {[lindex $line 1] ne "blob"} continue
-	set sha1 [lindex $line 2]
-	set fname [lindex $line 3]
+	regexp {^[^ ]+ [^ ]+ ([^ ]+)\t(.*)} $line -> sha1 fname
 	lappend treefilelist($id) $fname
 	lappend treeidlist($id) $sha1
     }
@@ -4324,7 +4323,7 @@
 	}
 	return
     }
-    set file [lindex $line 5]
+    regexp {^[^ ]+ [^ ]+ [^ ]+ [^ ]+ [^ ]+\t(.*)} $line -> file
     lappend treediff $file
 }
-- 
Frédéric Jolliton

Re: [PATCH] gitk doesn't handle filenames with space correctly

From: Bernt Hansen <hidden>
Date: 2016-06-15 22:43:04

Frédéric Jolliton [off-list ref] writes:
Here is an attempt to fix gitk such that it can display filenames with
space correctly, in the right column (Patch/Tree). I don't know TCL, so
probably that a better solution exists.
Thanks Frédéric!

This patch works great for me.

:)

Bernt
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help