mail-prsvr.el 1.5 KB

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