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