* [PATCH] git-gui: Remove space from the end of aspell's reply before processing
@ 2008-09-30 6:39 Johannes Sixt
0 siblings, 0 replies; only message in thread
From: Johannes Sixt @ 2008-09-30 6:39 UTC (permalink / raw)
To: Shawn O. Pearce; +Cc: Git Mailing List
From: Johannes Sixt <johannes.sixt@telecom.at>
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>
---
There's probably a better solution by having TCL do the translation of
line endings, but I don't know how to do that.
-- Hannes
lib/spellcheck.tcl | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/lib/spellcheck.tcl b/lib/spellcheck.tcl
index a479b2f..e612030 100644
--- a/lib/spellcheck.tcl
+++ b/lib/spellcheck.tcl
@@ -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"
--
1.6.0.2.1262.ge466e
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2008-09-30 6:40 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-30 6:39 [PATCH] git-gui: Remove space from the end of aspell's reply before processing Johannes Sixt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).