diff options
Diffstat (limited to 'git-gui/lib/diff.tcl')
| -rw-r--r-- | git-gui/lib/diff.tcl | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/git-gui/lib/diff.tcl b/git-gui/lib/diff.tcl index ec8c11eeb7..c628750276 100644 --- a/git-gui/lib/diff.tcl +++ b/git-gui/lib/diff.tcl @@ -55,7 +55,7 @@ proc handle_empty_diff {} {  	set path $current_diff_path  	set s $file_states($path) -	if {[lindex $s 0] ne {_M}} return +	if {[lindex $s 0] ne {_M} || [has_textconv $path]} return  	# Prevent infinite rescan loops  	incr diff_empty_count @@ -280,6 +280,9 @@ proc start_show_diff {cont_info {add_opts {}}} {  			lappend cmd diff-files  		}  	} +	if {![is_config_false gui.textconv] && [git-version >= 1.6.1]} { +		lappend cmd --textconv +	}  	if {[string match {160000 *} [lindex $s 2]]  	 || [string match {160000 *} [lindex $s 3]]} {  | 
