* DOODLE-TIPS: New file.
[elisp/flim.git] / DOODLE-TIPS
1 * You should byte-compile(make).
2 Because DOODLE uses very complex macro.
3
4 Especialy ew-line.el, ew-scan-m.el, ew-scan-s.el and ew-scan-u.el that are require 'lex.
5 (lex is scanner generator.)
6
7 * Multiline field-bodies fetched from XOVER is already concatinated,
8 you should set ew-ignore-76bytes-limit to true.
9
10 (setq gnus-unstructured-field-decoder
11   (lambda (string)
12     (let ((ew-ignore-76bytes-limit t))
13       (eword-decode-unstructured-field-body
14         (std11-unfold-string string)
15         (quote must-unfold)))))
16
17 (setq gnus-structured-field-decoder
18   (lambda (string)
19     (let ((ew-ignore-76bytes-limit t))
20       (eword-decode-and-unfold-structured-field string))))