* mel-q-ccl.el (mel-ccl-encode-quoted-printable-generic): Write white
[elisp/flim.git] / ew-bq.el
1 (require 'emu)
2 (require 'mel)
3
4 (defun ew-decode-q (string)
5   (if (equal string "")
6     ""
7     (encoded-text-decode-string string "Q")))
8
9 (defun ew-decode-b (string)
10   (if (equal string "")
11     ""
12     (encoded-text-decode-string string "B")))
13
14 (provide 'ew-bq)