comparison lisp/=gnusmail.el @ 807:4f28bd14272c

*** empty log message ***
author Eric S. Raymond <esr@snark.thyrsus.com>
date Thu, 16 Jul 1992 21:47:34 +0000
parents 22b98190b7ef
children e694e0879463
comparison
equal deleted inserted replaced
806:d42e1151eed8 807:4f28bd14272c
1 ;;; gnusmail.el --- mail reply commands for GNUS newsreader 1 ;;; gnusmail.el --- mail reply commands for GNUS newsreader
2 2
3 ;; Author: Masanobu UMEDA <umerin@flab.flab.fujitsu.junet>
4 ;; Last-Modified: 10 Jun 1992
5
6 ;; $Header: gnusmail.el,v 1.1 90/03/23 13:24:39 umerin Locked $
7
3 ;; Copyright (C) 1990 Free Software Foundation, Inc. 8 ;; Copyright (C) 1990 Free Software Foundation, Inc.
4 ;; $Header: gnusmail.el,v 1.1 90/03/23 13:24:39 umerin Locked $
5 9
6 ;; This file is part of GNU Emacs. 10 ;; This file is part of GNU Emacs.
7 11
8 ;; GNU Emacs is free software; you can redistribute it and/or modify 12 ;; 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 13 ;; it under the terms of the GNU General Public License as published by
10 ;; the Free Software Foundation; either version 1, or (at your option) 14 ;; the Free Software Foundation; either version 2, or (at your option)
11 ;; any later version. 15 ;; any later version.
12 16
13 ;; GNU Emacs is distributed in the hope that it will be useful, 17 ;; GNU Emacs is distributed in the hope that it will be useful,
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of 18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 21
18 ;; You should have received a copy of the GNU General Public License 22 ;; You should have received a copy of the GNU General Public License
19 ;; along with GNU Emacs; see the file COPYING. If not, write to 23 ;; along with GNU Emacs; see the file COPYING. If not, write to
20 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 24 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
21 25
22 (require 'gnus) 26 ;;; Commentary:
23 27
24 ;; Provides mail reply and mail other window command using usual mail 28 ;; Provides mail reply and mail other window command using usual mail
25 ;; interface and mh-e interface. 29 ;; interface and mh-e interface.
26 ;; 30 ;;
27 ;; To use MAIL: set the variables gnus-mail-reply-method and 31 ;; To use MAIL: set the variables gnus-mail-reply-method and
29 ;; gnus-mail-other-window-using-mail, respectively. 33 ;; gnus-mail-other-window-using-mail, respectively.
30 ;; 34 ;;
31 ;; To use MH-E: set the variables gnus-mail-reply-method and 35 ;; To use MH-E: set the variables gnus-mail-reply-method and
32 ;; gnus-mail-other-window-method to gnus-mail-reply-using-mhe and 36 ;; gnus-mail-other-window-method to gnus-mail-reply-using-mhe and
33 ;; gnus-mail-other-window-using-mhe, respectively. 37 ;; gnus-mail-other-window-using-mhe, respectively.
38
39 ;;; Code:
40
41 (require 'gnus)
34 42
35 (autoload 'news-mail-reply "rnewspost") 43 (autoload 'news-mail-reply "rnewspost")
36 (autoload 'news-mail-other-window "rnewspost") 44 (autoload 'news-mail-other-window "rnewspost")
37 45
38 (autoload 'mh-send "mh-e") 46 (autoload 'mh-send "mh-e")