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