summaryrefslogtreecommitdiff
path: root/pico/word.c
diff options
context:
space:
mode:
authorEduardo Chappa <chappa@washington.edu>2013-08-04 21:50:43 -0600
committerEduardo Chappa <chappa@washington.edu>2013-08-04 21:50:43 -0600
commit82ec113957d8297ed08c51c20cbc4b0a6f623d4e (patch)
treebc58ae92ca1627554947f894206af9a47e8cee60 /pico/word.c
parent33d5c0604e830bb65c2f5ccd69170b1c1453802b (diff)
downloadalpine-82ec113957d8297ed08c51c20cbc4b0a6f623d4e.tar.xz
* New version 2.10.99999
* Pico: search backwards. * do not allow List- headers to be set up by users in accordance with RFC 2369. * minor fixes for new justification support (add comparison of a line with the previous *and* the next).
Diffstat (limited to 'pico/word.c')
-rw-r--r--pico/word.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pico/word.c b/pico/word.c
index e5b361b7..1f176ab3 100644
--- a/pico/word.c
+++ b/pico/word.c
@@ -517,7 +517,7 @@ quote_match(UCS *q, LINE *gl, UCS *bufl, size_t buflen)
do_quote_match(q, gl, bufl, buflen); /* given line */
do_quote_match(q, nl, bufn, sizeof(bufn)); /* next line */
- if(!ucs4_strcmp(bufp, bufl))
+ if(!ucs4_strcmp(bufp, bufl) || !ucs4_strcmp(bufl, bufn))
return ucs4_strlen(bufl);
/* is this line quoted? */