Mercurial > emacs
annotate lisp/gnus/gnus-mh.el @ 108287:c0d13767677a
Synch with Gnus trunk.
* mail/binhex.el (binhex-decode-region-internal)
* mail/uudecode.el (uudecode-decode-region-internal)
* net/dns.el (dns-read-string-name, dns-write, dns-read)
(dns-read-type, dns-query)
* pgg-parse.el (pgg-parse-armor)
* pgg.el (pgg-verify-region)
* sha1.el (sha1-string-external): Don't run set-buffer-multibyte for
XEmacs.
* net/imap.el (imap-disable-multibyte): Redefine them as a macro.
* nnweb.el (nnweb-gmane-search)
* yenc.el (yenc-decode-region): Don't run set-buffer-multibyte for
XEmacs.
* gnus-art.el (gnus-article-browse-html-parts)
* gnus-group.el (gnus-read-ephemeral-gmane-group)
(gnus-read-ephemeral-bug-grou): Use mm-make-temp-file instead of
make-temp-file.
* gnus-dired.el (gnus-dired-mode): Bind gnus-dired-mode-hook,
gnus-dired-mode-on-hook and gnus-dired-mode-off-hook for XEmacs when
compiling.
* gnus-ml.el (gnus-mailing-list-mode): Bind gnus-mailing-list-mode-hook,
gnus-mailing-list-mode-on-hook and gnus-mailing-list-mode-off-hook for
XEmacs when compiling.
* gnus-salt.el (gnus-pick-mode): Bind gnus-pick-mode-on-hook and
gnus-pick-mode-off-hook for XEmacs when compiling.
(gnus-binary-mode): Bind gnus-binary-mode-on-hook and
gnus-binary-mode-off-hook for XEmacs when compiling.
* gnus-sum.el (gnus-summary-limit-strange-charsets-predicate): Return
nil if char-charset is not available.
* sieve-manage.el (sieve-manage-disable-multibyte): Redefine them as a
macro.
* mm-url.el (mm-url-form-encode-xwfu): Use mm-encode-coding-string
instead of encode-coding-string.
* mm-util.el (mm-enable-multibyte, mm-disable-multibyte): Use (featurep
'xemacs) instead of mm-emacs-mule to switch function definitions.
(mm-with-unibyte-current-buffer): Make it a progn macro for XEmacs.
author | Katsumi Yamaoka <yamaoka@jpl.org> |
---|---|
date | Fri, 07 May 2010 06:58:17 +0000 |
parents | 1d1d5d9bd884 |
children | 8d09094063d0 376148b31b5e |
rev | line source |
---|---|
17493 | 1 ;;; gnus-mh.el --- mh-e interface for Gnus |
64754
fafd692d1e40
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64085
diff
changeset
|
2 |
74547 | 3 ;; Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, |
106815 | 4 ;; 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. |
17493 | 5 |
6 ;; Author: Masanobu UMEDA <umerin@flab.flab.fujitsu.junet> | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
7 ;; Lars Magne Ingebrigtsen <larsi@gnus.org> |
17493 | 8 ;; Keywords: news |
9 | |
10 ;; This file is part of GNU Emacs. | |
11 | |
94662
f42ef85caf91
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
12 ;; GNU Emacs is free software: you can redistribute it and/or modify |
17493 | 13 ;; it under the terms of the GNU General Public License as published by |
94662
f42ef85caf91
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
14 ;; the Free Software Foundation, either version 3 of the License, or |
f42ef85caf91
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
15 ;; (at your option) any later version. |
17493 | 16 |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
94662
f42ef85caf91
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
17493 | 24 |
25 ;;; Commentary: | |
26 | |
27 ;;; Send mail using mh-e. | |
28 | |
29 ;; The following mh-e interface is all cooperative works of | |
30 ;; tanaka@flab.fujitsu.CO.JP (TANAKA Hiroshi), kawabe@sra.CO.JP | |
31 ;; (Yoshikatsu Kawabe), and shingu@casund.cpr.canon.co.jp (Toshiaki | |
32 ;; SHINGU). | |
33 | |
34 ;;; Code: | |
35 | |
36 (require 'gnus) | |
37 (require 'mh-e) | |
38 (require 'mh-comp) | |
39 (require 'gnus-msg) | |
40 (require 'gnus-sum) | |
41 | |
86154 | 42 (defvar mh-lib-progs) |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
43 |
17493 | 44 (defun gnus-summary-save-article-folder (&optional arg) |
45 "Append the current article to an mh folder. | |
46 If N is a positive number, save the N next articles. | |
47 If N is a negative number, save the N previous articles. | |
48 If N is nil and any articles have been marked with the process mark, | |
49 save those articles instead." | |
50 (interactive "P") | |
34858
6c93e7d6a930
* message.el (message-setup): Use cons. Suggested by Johan Vromans
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
32192
diff
changeset
|
51 (require 'gnus-art) |
17493 | 52 (let ((gnus-default-article-saver 'gnus-summary-save-in-folder)) |
53 (gnus-summary-save-article arg))) | |
54 | |
55 (defun gnus-summary-save-in-folder (&optional folder) | |
56 "Save this article to MH folder (using `rcvstore' in MH library). | |
57 Optional argument FOLDER specifies folder name." | |
58 ;; Thanks to yuki@flab.Fujitsu.JUNET and ohm@kaba.junet. | |
59 (mh-find-path) | |
60 (let ((folder | |
61 (cond ((and (eq folder 'default) | |
62 gnus-newsgroup-last-folder) | |
63 gnus-newsgroup-last-folder) | |
64 (folder folder) | |
65 (t (mh-prompt-for-folder | |
66 "Save article in" | |
67 (funcall gnus-folder-save-name gnus-newsgroup-name | |
68 gnus-current-headers gnus-newsgroup-last-folder) | |
69 t)))) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
70 (errbuf (gnus-get-buffer-create " *Gnus rcvstore*")) |
17493 | 71 ;; Find the rcvstore program. |
32192
cdd557fc0cb4
(gnus-summary-save-in-folder): Obey mh-lib-progs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31716
diff
changeset
|
72 (exec-path (cond |
cdd557fc0cb4
(gnus-summary-save-in-folder): Obey mh-lib-progs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31716
diff
changeset
|
73 ((and (boundp 'mh-lib-progs) mh-lib-progs) |
cdd557fc0cb4
(gnus-summary-save-in-folder): Obey mh-lib-progs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31716
diff
changeset
|
74 (cons mh-lib-progs exec-path)) |
cdd557fc0cb4
(gnus-summary-save-in-folder): Obey mh-lib-progs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31716
diff
changeset
|
75 (mh-lib (cons mh-lib exec-path)) |
cdd557fc0cb4
(gnus-summary-save-in-folder): Obey mh-lib-progs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31716
diff
changeset
|
76 (t exec-path)))) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24586
diff
changeset
|
77 (with-current-buffer gnus-original-article-buffer |
17493 | 78 (save-restriction |
79 (widen) | |
80 (unwind-protect | |
81 (call-process-region | |
82 (point-min) (point-max) "rcvstore" nil errbuf nil folder) | |
83 (set-buffer errbuf) | |
84 (if (zerop (buffer-size)) | |
85 (message "Article saved in folder: %s" folder) | |
86 (message "%s" (buffer-string))) | |
87 (kill-buffer errbuf)))) | |
88 (setq gnus-newsgroup-last-folder folder))) | |
89 | |
90 (defun gnus-Folder-save-name (newsgroup headers &optional last-folder) | |
91 "Generate folder name from NEWSGROUP, HEADERS, and optional LAST-FOLDER. | |
92 If variable `gnus-use-long-file-name' is nil, it is +News.group. | |
93 Otherwise, it is like +news/group." | |
94 (or last-folder | |
95 (concat "+" | |
96 (if gnus-use-long-file-name | |
97 (gnus-capitalize-newsgroup newsgroup) | |
98 (gnus-newsgroup-directory-form newsgroup))))) | |
99 | |
100 (defun gnus-folder-save-name (newsgroup headers &optional last-folder) | |
101 "Generate folder name from NEWSGROUP, HEADERS, and optional LAST-FOLDER. | |
102 If variable `gnus-use-long-file-name' is nil, it is +news.group. | |
103 Otherwise, it is like +news/group." | |
104 (or last-folder | |
105 (concat "+" | |
106 (if gnus-use-long-file-name | |
107 newsgroup | |
108 (gnus-newsgroup-directory-form newsgroup))))) | |
109 | |
110 (provide 'gnus-mh) | |
111 | |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
87649
diff
changeset
|
112 ;; arch-tag: 2d5696d3-b363-48e5-8749-c256be56acca |
17493 | 113 ;;; gnus-mh.el ends here |