This commit was manufactured by cvs2svn to create branch 'doodle'.
[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
5 are require 'lex.
6 (lex is scanner generator.)
7
8 * Multiline field-bodies fetched from XOVER is already unfolded,
9 so special care is needed for gnus-structured-field-decoder and
10 gnus-unstructured-field-decoder.
11
12 (autoload 'ew-gnus-structured-field-decoder "ew-compat")
13 (setq gnus-structured-field-decoder 'ew-gnus-structured-field-decoder)
14
15 (autoload 'ew-gnus-unstructured-field-decoder "ew-compat")
16 (setq gnus-unstructured-field-decoder 'ew-gnus-unstructured-field-decoder)
17
18 * Ignore warnings about args-eword-* when byte-compiling.
19
20 * If you want to modify load-path or other variables when
21 byte-compiling without editing files, set EVALARGS environment variable.
22
23   % EVALARGS='(setq load-path (cons "../apel" load-path))' make