+2003-02-09
+
+ * src/codeconv.c:
+ LBREAK_IF_REQUIRED(): don't break lines before first word (fixes
+ X-Face header problem).
+ conv_encode_header(): allow up to 97 characters for one word.
+
2003-02-07
* src/filter.c: filter_match_condition(): fixed the bug that
destp--; \
else if (plaintext && isspace(*srcp)) \
srcp++; \
- if (*srcp) { \
+ if (destp > dest && *srcp) { \
*destp++ = '\n'; \
*destp++ = ' '; \
left = MAX_LINELEN - 1; \
word_len = get_next_word_len(srcp);
LBREAK_IF_REQUIRED(left < word_len, TRUE);
while (word_len > 0) {
- LBREAK_IF_REQUIRED(left <= 0, TRUE);
+ LBREAK_IF_REQUIRED(left + 22 <= 0, TRUE);
*destp++ = *srcp++;
left--;
word_len--;