Update copyright year to 2014 by running admin/update-copyright.
[emacs.git] / lisp / gnus / mail-prsvr.el
blobb193dccf420a88f4ff6f0abe3c760716bc18342d
1 ;;; mail-prsvr.el --- Interface variables for parsing mail
3 ;; Copyright (C) 1999-2014 Free Software Foundation, Inc.
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
6 ;; This file is part of GNU Emacs.
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.
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.
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/>.
21 ;;; Commentary:
23 ;;; Code:
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.")
31 (defvar mail-parse-mule-charset nil
32 "Default MULE charset used by low-level libraries.
33 This variable should never be set.")
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.")
41 (provide 'mail-prsvr)
43 ;;; mail-prsvr.el ends here