Merge branch 'master' of http://git.gnus.org/gnus into SYgnus
[gnus] / lisp / mail-prsvr.el
1 ;;; mail-prsvr.el --- Interface variables for parsing mail
2
3 ;; Copyright (C) 1999-2016 Free Software Foundation, Inc.
4
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
6 ;; This file is part of GNU Emacs.
7
8 ;; GNU Emacs is free software: you can redistribute it and/or modify
9 ;; it under the terms of the GNU General Public License as published by
10 ;; the Free Software Foundation, either version 3 of the License, or
11 ;; (at your option) any later version.
12
13 ;; GNU Emacs is distributed in the hope that it will be useful,
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 ;; GNU General Public License for more details.
17
18 ;; You should have received a copy of the GNU General Public License
19 ;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
20
21 ;;; Commentary:
22
23 ;;; Code:
24
25 (defvar mail-parse-charset nil
26   "Default charset used by low-level libraries.
27 This variable should never be set.  Instead, it should be bound by
28 functions that wish to call mail-parse functions and let them know
29 what the desired charset is to be.")
30
31 (defvar mail-parse-mule-charset nil
32   "Default MULE charset used by low-level libraries.
33 This variable should never be set.")
34
35 (defvar mail-parse-ignored-charsets nil
36   "Ignored charsets used by low-level libraries.
37 This variable should never be set.  Instead, it should be bound by
38 functions that wish to call mail-parse functions and let them know
39 what the desired charsets is to be ignored.")
40
41 (provide 'mail-prsvr)
42
43 ;;; mail-prsvr.el ends here