]> git.notmuchmail.org Git - notmuch/commitdiff
[sup-compat] Don't trim trailing whitespace on line introducing quotation.
authorCarl Worth <cworth@cworth.org>
Wed, 14 Oct 2009 21:06:06 +0000 (14:06 -0700)
committerCarl Worth <cworth@cworth.org>
Wed, 14 Oct 2009 21:06:06 +0000 (14:06 -0700)
Ignoring this whitespace seems like a good idea to me, but it's
interfering with my comparisons with sup since sup doesn't do this.

This might be a commit worth dropping in the future since it exists
only for pedantic consistency with sup and not for any reason of its
own.

notmuch-index-message.cc

index dfcb3ba50c67b56f3757c4c8311b4aa96146fec5..bb393641af1da745841f108ec6022f28e4904f9a 100644 (file)
@@ -377,9 +377,6 @@ gen_terms_body_str (Xapian::TermGenerator term_gen,
            continue;
 
        /* Also skip lines introducing a quote on the next line. */
            continue;
 
        /* Also skip lines introducing a quote on the next line. */
-       while (line_end > line && isspace (*line_end))
-           line_end--;
-
        if (*line_end == ':' && *next_line == '>')
            continue;
 
        if (*line_end == ':' && *next_line == '>')
            continue;