Skip to content

Commit

Permalink
git-gui: Remove space from the end of aspell's reply before processing
Browse files Browse the repository at this point in the history
When git gui processes a reply from aspell it explicitly ignores an empty
line. The Windows version of aspell, however, terminates lines with CRLF,
but TCL's 'gets' does not remove CR, hence, a "visibly" empty line was not
actually recognized as empty. With this change we explicitly trim off
whitespace before the line is further processed.

Signed-off-by: Johannes Sixt <johannes.sixt@telecom.at>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
  • Loading branch information
Johannes Sixt authored and Shawn O. Pearce committed Sep 30, 2008
1 parent 0aea284 commit 34785f8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/spellcheck.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,7 @@ method _run {} {
method _read {} {
while {[gets $s_fd line] >= 0} {
set lineno [lindex $s_pending 0 0]
set line [string trim $line]

if {$s_clear} {
$w_text tag remove misspelled "$lineno.0" "$lineno.end"
Expand Down

0 comments on commit 34785f8

Please sign in to comment.