* nnmail.el (nnmail-split-it): Revoke the change of 1999-08-19.
[elisp/gnus.git-] / lisp / mmgnus.el
1 ;;; mmgnus.el --- MIME entity implementation for gnus-article
2
3 ;; Copyright (C) 1998 Free Software Foundation, Inc.
4
5 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
6 ;; Keywords: MIME, multimedia, mail, news
7
8 ;; This file is part of Chao-gnus.
9
10 ;; This program is free software; you can redistribute it and/or
11 ;; modify it under the terms of the GNU General Public License as
12 ;; published by the Free Software Foundation; either version 2, or (at
13 ;; your option) any later version.
14
15 ;; This program is distributed in the hope that it will be useful, but
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 ;; General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Code:
26
27 (require 'mmbuffer)
28
29 (luna-define-class mime-gnus-entity (mime-buffer-entity)
30                    (number
31                     subject from date id references chars lines xref extra))
32
33 (luna-define-internal-accessors 'mime-gnus-entity)
34
35 (luna-define-method initialize-instance ((entity mime-gnus-entity)
36                                          &rest init-args)
37   (apply (car (luna-class-find-functions
38                (luna-find-class 'standard-object)
39                'initialize-instance))
40          entity init-args))
41
42 (provide 'mmgnus)
43
44 ;;; mmgnus.el ends here