aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2009-10-14 14:06:06 -0700
committerCarl Worth <cworth@cworth.org>2009-10-14 14:06:06 -0700
commit6363ab32eab64c1618f8d257953f31877d09b2a9 (patch)
tree2300b8f37d353b993f4f5f232d1008c46a0a94de
parent736bad40ac5cb08e205525741246295f7a7ab1e8 (diff)
[sup-compat] Don't trim trailing whitespace on line introducing quotation.
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.
-rw-r--r--notmuch-index-message.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/notmuch-index-message.cc b/notmuch-index-message.cc
index dfcb3ba5..bb393641 100644
--- a/notmuch-index-message.cc
+++ b/notmuch-index-message.cc
@@ -377,9 +377,6 @@ gen_terms_body_str (Xapian::TermGenerator term_gen,
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;