annotate lisp/mail/rmailsum.el @ 82411:f166520262fd

*** empty log message ***
author Glenn Morris <rgm@gnu.org>
date Thu, 16 Aug 2007 03:15:35 +0000
parents 08bc2cd75b7c
children de499b20517a 2c08ad76fc1f cd5e99697764
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2233
fb0ed5a1d0f3 Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2232
diff changeset
1 ;;; rmailsum.el --- make summary buffers for the mail reader
2232
4f9d60f7de9d Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2164
diff changeset
2
64754
fafd692d1e40 Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 64085
diff changeset
3 ;; Copyright (C) 1985, 1993, 1994, 1995, 1996, 2000, 2001, 2002, 2003,
75347
e3694f1cb928 Add 2007 to copyright years.
Glenn Morris <rgm@gnu.org>
parents: 69403
diff changeset
4 ;; 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
845
213978acbc1e entered into RCS
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 814
diff changeset
5
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 658
diff changeset
6 ;; Maintainer: FSF
814
38b2499cb3e9 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 807
diff changeset
7 ;; Keywords: mail
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 658
diff changeset
8
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
9 ;; This file is part of GNU Emacs.
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
10
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
12 ;; it under the terms of the GNU General Public License as published by
78232
8e27d63c45eb Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents: 77963
diff changeset
13 ;; the Free Software Foundation; either version 3, or (at your option)
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
14 ;; any later version.
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
15
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
16 ;; GNU Emacs is distributed in the hope that it will be useful,
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
19 ;; GNU General Public License for more details.
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
20
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
21 ;; You should have received a copy of the GNU General Public License
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13809
diff changeset
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
64085
18a818a2ee7c Update FSF's address.
Lute Kamstra <lute@gnu.org>
parents: 63944
diff changeset
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18a818a2ee7c Update FSF's address.
Lute Kamstra <lute@gnu.org>
parents: 63944
diff changeset
24 ;; Boston, MA 02110-1301, USA.
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
25
2232
4f9d60f7de9d Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2164
diff changeset
26 ;;; Commentary:
4f9d60f7de9d Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2164
diff changeset
27
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
28 ;; Extended by Bob Weiner of Motorola
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
29 ;; Provided all commands from rmail-mode in rmail-summary-mode and made key
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
30 ;; bindings in both modes wholly compatible.
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
31
2232
4f9d60f7de9d Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2164
diff changeset
32 ;;; Code:
4f9d60f7de9d Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2164
diff changeset
33
65206
f2358a6ec49b (msgnum): Add defvar.
Juanma Barranquero <lekktu@gmail.com>
parents: 64929
diff changeset
34 (defvar msgnum)
f2358a6ec49b (msgnum): Add defvar.
Juanma Barranquero <lekktu@gmail.com>
parents: 64929
diff changeset
35
12911
be0fe2c66b9d Require rmail.
Richard M. Stallman <rms@gnu.org>
parents: 12877
diff changeset
36 ;; For rmail-select-summary
be0fe2c66b9d Require rmail.
Richard M. Stallman <rms@gnu.org>
parents: 12877
diff changeset
37 (require 'rmail)
be0fe2c66b9d Require rmail.
Richard M. Stallman <rms@gnu.org>
parents: 12877
diff changeset
38
14940
9dceb7afbb68 (rmail-summary-scroll-between-messages): New var.
Richard M. Stallman <rms@gnu.org>
parents: 14786
diff changeset
39 ;;;###autoload
17631
35d8e74c6edb Use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17484
diff changeset
40 (defcustom rmail-summary-scroll-between-messages t
35d8e74c6edb Use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17484
diff changeset
41 "*Non-nil means Rmail summary scroll commands move between messages."
35d8e74c6edb Use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17484
diff changeset
42 :type 'boolean
35d8e74c6edb Use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17484
diff changeset
43 :group 'rmail-summary)
14940
9dceb7afbb68 (rmail-summary-scroll-between-messages): New var.
Richard M. Stallman <rms@gnu.org>
parents: 14786
diff changeset
44
16388
9f29d4bcdc98 (rmail-summary-line-count-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16344
diff changeset
45 ;;;###autoload
17631
35d8e74c6edb Use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17484
diff changeset
46 (defcustom rmail-summary-line-count-flag t
49637
32bf542aaf1c (rmail-summary-previous-msg): Add docstring.
John Paul Wallington <jpw@pobox.com>
parents: 49598
diff changeset
47 "*Non-nil means Rmail summary should show the number of lines in each message."
17631
35d8e74c6edb Use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17484
diff changeset
48 :type 'boolean
35d8e74c6edb Use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17484
diff changeset
49 :group 'rmail-summary)
16388
9f29d4bcdc98 (rmail-summary-line-count-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16344
diff changeset
50
9379
138d99e53e94 (rmail-summary-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 9352
diff changeset
51 (defvar rmail-summary-font-lock-keywords
40155
c97b4697abed (rmail-summary-font-lock-keywords): Fix the
Eli Zaretskii <eliz@gnu.org>
parents: 39567
diff changeset
52 '(("^.....D.*" . font-lock-string-face) ; Deleted.
c97b4697abed (rmail-summary-font-lock-keywords): Fix the
Eli Zaretskii <eliz@gnu.org>
parents: 39567
diff changeset
53 ("^.....-.*" . font-lock-type-face) ; Unread.
9379
138d99e53e94 (rmail-summary-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 9352
diff changeset
54 ;; Neither of the below will be highlighted if either of the above are:
40155
c97b4697abed (rmail-summary-font-lock-keywords): Fix the
Eli Zaretskii <eliz@gnu.org>
parents: 39567
diff changeset
55 ("^.....[^D-] \\(......\\)" 1 font-lock-keyword-face) ; Date.
52683
6b76116caa09 (rmail-make-summary-line-1): Change comma after last label to a space.
Richard M. Stallman <rms@gnu.org>
parents: 52401
diff changeset
56 ("{ \\([^\n}]+\\) }" 1 font-lock-comment-face)) ; Labels.
9379
138d99e53e94 (rmail-summary-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 9352
diff changeset
57 "Additional expressions to highlight in Rmail Summary mode.")
138d99e53e94 (rmail-summary-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 9352
diff changeset
58
63944
6f8d122757b4 (rmail-summary-redo): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 62764
diff changeset
59 (defvar rmail-summary-redo
6f8d122757b4 (rmail-summary-redo): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 62764
diff changeset
60 "(FUNCTION . ARGS) to regenerate this Rmail summary buffer.")
6f8d122757b4 (rmail-summary-redo): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 62764
diff changeset
61
6f8d122757b4 (rmail-summary-redo): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 62764
diff changeset
62 (defvar rmail-summary-overlay nil)
6f8d122757b4 (rmail-summary-redo): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 62764
diff changeset
63 (put 'rmail-summary-overlay 'permanent-local t)
6f8d122757b4 (rmail-summary-redo): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 62764
diff changeset
64
6f8d122757b4 (rmail-summary-redo): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 62764
diff changeset
65 (defvar rmail-summary-mode-map nil)
6f8d122757b4 (rmail-summary-redo): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 62764
diff changeset
66
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
67 ;; Entry points for making a summary buffer.
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
68
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
69 ;; Regenerate the contents of the summary
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
70 ;; using the same selection criterion as last time.
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
71 ;; M-x revert-buffer in a summary buffer calls this function.
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
72 (defun rmail-update-summary (&rest ignore)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
73 (apply (car rmail-summary-redo) (cdr rmail-summary-redo)))
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
74
16344
ec0f59ba6768 (rmail-summary-by-senders, rmail-summary): Add autoload.
Richard M. Stallman <rms@gnu.org>
parents: 16242
diff changeset
75 ;;;###autoload
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
76 (defun rmail-summary ()
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
77 "Display a summary of all messages, one line per message."
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
78 (interactive)
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
79 (rmail-new-summary "All" '(rmail-summary) nil))
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
80
16344
ec0f59ba6768 (rmail-summary-by-senders, rmail-summary): Add autoload.
Richard M. Stallman <rms@gnu.org>
parents: 16242
diff changeset
81 ;;;###autoload
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
82 (defun rmail-summary-by-labels (labels)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
83 "Display a summary of all messages with one or more LABELS.
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
84 LABELS should be a string containing the desired labels, separated by commas."
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
85 (interactive "sLabels to summarize by: ")
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
86 (if (string= labels "")
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
87 (setq labels (or rmail-last-multi-labels
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
88 (error "No label specified"))))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
89 (setq rmail-last-multi-labels labels)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
90 (rmail-new-summary (concat "labels " labels)
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
91 (list 'rmail-summary-by-labels labels)
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
92 'rmail-message-labels-p
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
93 (concat ", \\(" (mail-comma-list-regexp labels) "\\),")))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
94
16344
ec0f59ba6768 (rmail-summary-by-senders, rmail-summary): Add autoload.
Richard M. Stallman <rms@gnu.org>
parents: 16242
diff changeset
95 ;;;###autoload
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
96 (defun rmail-summary-by-recipients (recipients &optional primary-only)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
97 "Display a summary of all messages with the given RECIPIENTS.
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
98 Normally checks the To, From and Cc fields of headers;
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
99 but if PRIMARY-ONLY is non-nil (prefix arg given),
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
100 only look in the To and From fields.
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
101 RECIPIENTS is a string of regexps separated by commas."
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
102 (interactive "sRecipients to summarize by: \nP")
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
103 (rmail-new-summary
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
104 (concat "recipients " recipients)
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
105 (list 'rmail-summary-by-recipients recipients primary-only)
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
106 'rmail-message-recipients-p
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
107 (mail-comma-list-regexp recipients) primary-only))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
108
16344
ec0f59ba6768 (rmail-summary-by-senders, rmail-summary): Add autoload.
Richard M. Stallman <rms@gnu.org>
parents: 16242
diff changeset
109 ;;;###autoload
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
110 (defun rmail-summary-by-regexp (regexp)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
111 "Display a summary of all messages according to regexp REGEXP.
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
112 If the regular expression is found in the header of the message
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
113 \(including in the date and other lines, as well as the subject line),
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
114 Emacs will list the header line in the RMAIL-summary."
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
115 (interactive "sRegexp to summarize by: ")
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
116 (if (string= regexp "")
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
117 (setq regexp (or rmail-last-regexp
38412
253f761ad37b Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents: 37955
diff changeset
118 (error "No regexp specified"))))
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
119 (setq rmail-last-regexp regexp)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
120 (rmail-new-summary (concat "regexp " regexp)
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
121 (list 'rmail-summary-by-regexp regexp)
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
122 'rmail-message-regexp-p
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
123 regexp))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
124
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
125 ;; rmail-summary-by-topic
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
126 ;; 1989 R.A. Schnitzler
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
127
16344
ec0f59ba6768 (rmail-summary-by-senders, rmail-summary): Add autoload.
Richard M. Stallman <rms@gnu.org>
parents: 16242
diff changeset
128 ;;;###autoload
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
129 (defun rmail-summary-by-topic (subject &optional whole-message)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
130 "Display a summary of all messages with the given SUBJECT.
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
131 Normally checks the Subject field of headers;
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 46130
diff changeset
132 but if WHOLE-MESSAGE is non-nil (prefix arg given),
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
133 look in the whole message.
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
134 SUBJECT is a string of regexps separated by commas."
68090
9b341a563aea (rmail-summary-by-topic): Use
Alex Schroeder <alex@gnu.org>
parents: 65680
diff changeset
135 (interactive
9b341a563aea (rmail-summary-by-topic): Use
Alex Schroeder <alex@gnu.org>
parents: 65680
diff changeset
136 (let* ((subject (with-current-buffer rmail-buffer
9b341a563aea (rmail-summary-by-topic): Use
Alex Schroeder <alex@gnu.org>
parents: 65680
diff changeset
137 (rmail-current-subject)))
9b341a563aea (rmail-summary-by-topic): Use
Alex Schroeder <alex@gnu.org>
parents: 65680
diff changeset
138 (subject-re (with-current-buffer rmail-buffer
9b341a563aea (rmail-summary-by-topic): Use
Alex Schroeder <alex@gnu.org>
parents: 65680
diff changeset
139 (rmail-current-subject-regexp)))
9b341a563aea (rmail-summary-by-topic): Use
Alex Schroeder <alex@gnu.org>
parents: 65680
diff changeset
140 (prompt (concat "Topics to summarize by (regexp"
9b341a563aea (rmail-summary-by-topic): Use
Alex Schroeder <alex@gnu.org>
parents: 65680
diff changeset
141 (if subject ", default current subject" "")
9b341a563aea (rmail-summary-by-topic): Use
Alex Schroeder <alex@gnu.org>
parents: 65680
diff changeset
142 "): ")))
9b341a563aea (rmail-summary-by-topic): Use
Alex Schroeder <alex@gnu.org>
parents: 65680
diff changeset
143 (list (read-string prompt nil nil subject) current-prefix-arg)))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
144 (rmail-new-summary
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
145 (concat "about " subject)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
146 (list 'rmail-summary-by-topic subject whole-message)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
147 'rmail-message-subject-p
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
148 (mail-comma-list-regexp subject) whole-message))
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
149
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
150 (defun rmail-message-subject-p (msg subject &optional whole-message)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
151 (save-restriction
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
152 (goto-char (rmail-msgbeg msg))
23612
61519017b94a (rmail-message-subject-p):
Richard M. Stallman <rms@gnu.org>
parents: 23221
diff changeset
153 (search-forward "\n*** EOOH ***\n" (rmail-msgend msg) 'move)
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
154 (narrow-to-region
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
155 (point)
3349
31390246a7a2 (rmail-message-subject-p): Fix typo in string constant.
Richard M. Stallman <rms@gnu.org>
parents: 3198
diff changeset
156 (progn (search-forward (if whole-message "\^_" "\n\n")) (point)))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
157 (goto-char (point-min))
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
158 (if whole-message (re-search-forward subject nil t)
37955
e1400bd914f0 (rmail-message-subject-p): Don't call
Gerd Moellmann <gerd@gnu.org>
parents: 37614
diff changeset
159 (string-match subject (let ((subj (mail-fetch-field "Subject")))
e1400bd914f0 (rmail-message-subject-p): Don't call
Gerd Moellmann <gerd@gnu.org>
parents: 37614
diff changeset
160 (if subj
e1400bd914f0 (rmail-message-subject-p): Don't call
Gerd Moellmann <gerd@gnu.org>
parents: 37614
diff changeset
161 (funcall rmail-summary-line-decoder subj)
e1400bd914f0 (rmail-message-subject-p): Don't call
Gerd Moellmann <gerd@gnu.org>
parents: 37614
diff changeset
162 ""))))))
3443
7a15b35366f8 (rmail-summary-by-senders): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3349
diff changeset
163
16344
ec0f59ba6768 (rmail-summary-by-senders, rmail-summary): Add autoload.
Richard M. Stallman <rms@gnu.org>
parents: 16242
diff changeset
164 ;;;###autoload
3443
7a15b35366f8 (rmail-summary-by-senders): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3349
diff changeset
165 (defun rmail-summary-by-senders (senders)
7a15b35366f8 (rmail-summary-by-senders): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3349
diff changeset
166 "Display a summary of all messages with the given SENDERS.
7a15b35366f8 (rmail-summary-by-senders): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3349
diff changeset
167 SENDERS is a string of names separated by commas."
7a15b35366f8 (rmail-summary-by-senders): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3349
diff changeset
168 (interactive "sSenders to summarize by: ")
7a15b35366f8 (rmail-summary-by-senders): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3349
diff changeset
169 (rmail-new-summary
7a15b35366f8 (rmail-summary-by-senders): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3349
diff changeset
170 (concat "senders " senders)
5507
0a6c0e720ece (rmail-summary-by-senders):
Richard M. Stallman <rms@gnu.org>
parents: 5370
diff changeset
171 (list 'rmail-summary-by-senders senders)
3443
7a15b35366f8 (rmail-summary-by-senders): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3349
diff changeset
172 'rmail-message-senders-p
7a15b35366f8 (rmail-summary-by-senders): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3349
diff changeset
173 (mail-comma-list-regexp senders)))
7a15b35366f8 (rmail-summary-by-senders): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3349
diff changeset
174
7a15b35366f8 (rmail-summary-by-senders): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3349
diff changeset
175 (defun rmail-message-senders-p (msg senders)
7a15b35366f8 (rmail-summary-by-senders): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3349
diff changeset
176 (save-restriction
7a15b35366f8 (rmail-summary-by-senders): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3349
diff changeset
177 (goto-char (rmail-msgbeg msg))
7a15b35366f8 (rmail-summary-by-senders): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3349
diff changeset
178 (search-forward "\n*** EOOH ***\n")
7a15b35366f8 (rmail-summary-by-senders): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3349
diff changeset
179 (narrow-to-region (point) (progn (search-forward "\n\n") (point)))
7a15b35366f8 (rmail-summary-by-senders): New function.
Richard M. Stallman <rms@gnu.org>
parents: 3349
diff changeset
180 (string-match senders (or (mail-fetch-field "From") ""))))
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
181
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
182 ;; General making of a summary buffer.
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
183
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
184 (defvar rmail-summary-symbol-number 0)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
185
63944
6f8d122757b4 (rmail-summary-redo): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 62764
diff changeset
186 (defvar rmail-new-summary-line-count)
6f8d122757b4 (rmail-summary-redo): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 62764
diff changeset
187
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
188 (defun rmail-new-summary (description redo-form function &rest args)
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
189 "Create a summary of selected messages.
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
190 DESCRIPTION makes part of the mode line of the summary buffer.
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
191 For each message, FUNCTION is applied to the message number and ARGS...
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
192 and if the result is non-nil, that message is included.
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
193 nil for FUNCTION means all messages."
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
194 (message "Computing summary lines...")
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
195 (let (sumbuf mesg was-in-summary)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
196 (save-excursion
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
197 ;; Go to the Rmail buffer.
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
198 (if (eq major-mode 'rmail-summary-mode)
37614
17db314acfc2 (rmail-message-subject-p): Process the result
Gerd Moellmann <gerd@gnu.org>
parents: 37590
diff changeset
199 (setq was-in-summary t))
17db314acfc2 (rmail-message-subject-p): Process the result
Gerd Moellmann <gerd@gnu.org>
parents: 37590
diff changeset
200 (set-buffer rmail-buffer)
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
201 ;; Find its summary buffer, or make one.
3198
18612999f80c (rmail-new-summary): Set rmail-summary-buffer
Richard M. Stallman <rms@gnu.org>
parents: 3100
diff changeset
202 (setq sumbuf
18612999f80c (rmail-new-summary): Set rmail-summary-buffer
Richard M. Stallman <rms@gnu.org>
parents: 3100
diff changeset
203 (if (and rmail-summary-buffer
18612999f80c (rmail-new-summary): Set rmail-summary-buffer
Richard M. Stallman <rms@gnu.org>
parents: 3100
diff changeset
204 (buffer-name rmail-summary-buffer))
18612999f80c (rmail-new-summary): Set rmail-summary-buffer
Richard M. Stallman <rms@gnu.org>
parents: 3100
diff changeset
205 rmail-summary-buffer
18612999f80c (rmail-new-summary): Set rmail-summary-buffer
Richard M. Stallman <rms@gnu.org>
parents: 3100
diff changeset
206 (generate-new-buffer (concat (buffer-name) "-summary"))))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
207 (setq mesg rmail-current-message)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
208 ;; Filter the messages; make or get their summary lines.
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
209 (let ((summary-msgs ())
63944
6f8d122757b4 (rmail-summary-redo): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 62764
diff changeset
210 (rmail-new-summary-line-count 0))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
211 (let ((msgnum 1)
6762
f77de1e2b48b (rmail-new-summary): Avoid unsafe save-restriction.
Karl Heuer <kwzh@gnu.org>
parents: 6726
diff changeset
212 (buffer-read-only nil)
f77de1e2b48b (rmail-new-summary): Avoid unsafe save-restriction.
Karl Heuer <kwzh@gnu.org>
parents: 6726
diff changeset
213 (old-min (point-min-marker))
f77de1e2b48b (rmail-new-summary): Avoid unsafe save-restriction.
Karl Heuer <kwzh@gnu.org>
parents: 6726
diff changeset
214 (old-max (point-max-marker)))
f77de1e2b48b (rmail-new-summary): Avoid unsafe save-restriction.
Karl Heuer <kwzh@gnu.org>
parents: 6726
diff changeset
215 ;; Can't use save-restriction here; that doesn't work if we
f77de1e2b48b (rmail-new-summary): Avoid unsafe save-restriction.
Karl Heuer <kwzh@gnu.org>
parents: 6726
diff changeset
216 ;; plan to modify text outside the original restriction.
f77de1e2b48b (rmail-new-summary): Avoid unsafe save-restriction.
Karl Heuer <kwzh@gnu.org>
parents: 6726
diff changeset
217 (save-excursion
f77de1e2b48b (rmail-new-summary): Avoid unsafe save-restriction.
Karl Heuer <kwzh@gnu.org>
parents: 6726
diff changeset
218 (widen)
f77de1e2b48b (rmail-new-summary): Avoid unsafe save-restriction.
Karl Heuer <kwzh@gnu.org>
parents: 6726
diff changeset
219 (goto-char (point-min))
f77de1e2b48b (rmail-new-summary): Avoid unsafe save-restriction.
Karl Heuer <kwzh@gnu.org>
parents: 6726
diff changeset
220 (while (>= rmail-total-messages msgnum)
f77de1e2b48b (rmail-new-summary): Avoid unsafe save-restriction.
Karl Heuer <kwzh@gnu.org>
parents: 6726
diff changeset
221 (if (or (null function)
f77de1e2b48b (rmail-new-summary): Avoid unsafe save-restriction.
Karl Heuer <kwzh@gnu.org>
parents: 6726
diff changeset
222 (apply function (cons msgnum args)))
f77de1e2b48b (rmail-new-summary): Avoid unsafe save-restriction.
Karl Heuer <kwzh@gnu.org>
parents: 6726
diff changeset
223 (setq summary-msgs
f77de1e2b48b (rmail-new-summary): Avoid unsafe save-restriction.
Karl Heuer <kwzh@gnu.org>
parents: 6726
diff changeset
224 (cons (cons msgnum (rmail-make-summary-line msgnum))
f77de1e2b48b (rmail-new-summary): Avoid unsafe save-restriction.
Karl Heuer <kwzh@gnu.org>
parents: 6726
diff changeset
225 summary-msgs)))
f77de1e2b48b (rmail-new-summary): Avoid unsafe save-restriction.
Karl Heuer <kwzh@gnu.org>
parents: 6726
diff changeset
226 (setq msgnum (1+ msgnum)))
f77de1e2b48b (rmail-new-summary): Avoid unsafe save-restriction.
Karl Heuer <kwzh@gnu.org>
parents: 6726
diff changeset
227 (setq summary-msgs (nreverse summary-msgs)))
f77de1e2b48b (rmail-new-summary): Avoid unsafe save-restriction.
Karl Heuer <kwzh@gnu.org>
parents: 6726
diff changeset
228 (narrow-to-region old-min old-max))
3198
18612999f80c (rmail-new-summary): Set rmail-summary-buffer
Richard M. Stallman <rms@gnu.org>
parents: 3100
diff changeset
229 ;; Temporarily, while summary buffer is unfinished,
18612999f80c (rmail-new-summary): Set rmail-summary-buffer
Richard M. Stallman <rms@gnu.org>
parents: 3100
diff changeset
230 ;; we "don't have" a summary.
18612999f80c (rmail-new-summary): Set rmail-summary-buffer
Richard M. Stallman <rms@gnu.org>
parents: 3100
diff changeset
231 (setq rmail-summary-buffer nil)
37614
17db314acfc2 (rmail-message-subject-p): Process the result
Gerd Moellmann <gerd@gnu.org>
parents: 37590
diff changeset
232 (if rmail-enable-mime
17db314acfc2 (rmail-message-subject-p): Process the result
Gerd Moellmann <gerd@gnu.org>
parents: 37590
diff changeset
233 (with-current-buffer rmail-view-buffer
17db314acfc2 (rmail-message-subject-p): Process the result
Gerd Moellmann <gerd@gnu.org>
parents: 37590
diff changeset
234 (setq rmail-summary-buffer nil)))
3198
18612999f80c (rmail-new-summary): Set rmail-summary-buffer
Richard M. Stallman <rms@gnu.org>
parents: 3100
diff changeset
235 (save-excursion
18612999f80c (rmail-new-summary): Set rmail-summary-buffer
Richard M. Stallman <rms@gnu.org>
parents: 3100
diff changeset
236 (let ((rbuf (current-buffer))
17096
4a2d9b3990e3 (rmail-new-summary): Setup rmail-view-buffer.
Kenichi Handa <handa@m17n.org>
parents: 16676
diff changeset
237 (vbuf rmail-view-buffer)
3198
18612999f80c (rmail-new-summary): Set rmail-summary-buffer
Richard M. Stallman <rms@gnu.org>
parents: 3100
diff changeset
238 (total rmail-total-messages))
18612999f80c (rmail-new-summary): Set rmail-summary-buffer
Richard M. Stallman <rms@gnu.org>
parents: 3100
diff changeset
239 (set-buffer sumbuf)
18612999f80c (rmail-new-summary): Set rmail-summary-buffer
Richard M. Stallman <rms@gnu.org>
parents: 3100
diff changeset
240 ;; Set up the summary buffer's contents.
18612999f80c (rmail-new-summary): Set rmail-summary-buffer
Richard M. Stallman <rms@gnu.org>
parents: 3100
diff changeset
241 (let ((buffer-read-only nil))
18612999f80c (rmail-new-summary): Set rmail-summary-buffer
Richard M. Stallman <rms@gnu.org>
parents: 3100
diff changeset
242 (erase-buffer)
18612999f80c (rmail-new-summary): Set rmail-summary-buffer
Richard M. Stallman <rms@gnu.org>
parents: 3100
diff changeset
243 (while summary-msgs
18612999f80c (rmail-new-summary): Set rmail-summary-buffer
Richard M. Stallman <rms@gnu.org>
parents: 3100
diff changeset
244 (princ (cdr (car summary-msgs)) sumbuf)
18612999f80c (rmail-new-summary): Set rmail-summary-buffer
Richard M. Stallman <rms@gnu.org>
parents: 3100
diff changeset
245 (setq summary-msgs (cdr summary-msgs)))
18612999f80c (rmail-new-summary): Set rmail-summary-buffer
Richard M. Stallman <rms@gnu.org>
parents: 3100
diff changeset
246 (goto-char (point-min)))
18612999f80c (rmail-new-summary): Set rmail-summary-buffer
Richard M. Stallman <rms@gnu.org>
parents: 3100
diff changeset
247 ;; Set up the rest of its state and local variables.
18612999f80c (rmail-new-summary): Set rmail-summary-buffer
Richard M. Stallman <rms@gnu.org>
parents: 3100
diff changeset
248 (setq buffer-read-only t)
18612999f80c (rmail-new-summary): Set rmail-summary-buffer
Richard M. Stallman <rms@gnu.org>
parents: 3100
diff changeset
249 (rmail-summary-mode)
18612999f80c (rmail-new-summary): Set rmail-summary-buffer
Richard M. Stallman <rms@gnu.org>
parents: 3100
diff changeset
250 (make-local-variable 'minor-mode-alist)
15409
feee0ea235db (rmail-new-summary): Fix typo; (concat ": " description) should be eval'ed.
Richard M. Stallman <rms@gnu.org>
parents: 14940
diff changeset
251 (setq minor-mode-alist (list (list t (concat ": " description))))
3198
18612999f80c (rmail-new-summary): Set rmail-summary-buffer
Richard M. Stallman <rms@gnu.org>
parents: 3100
diff changeset
252 (setq rmail-buffer rbuf
17096
4a2d9b3990e3 (rmail-new-summary): Setup rmail-view-buffer.
Kenichi Handa <handa@m17n.org>
parents: 16676
diff changeset
253 rmail-view-buffer vbuf
3198
18612999f80c (rmail-new-summary): Set rmail-summary-buffer
Richard M. Stallman <rms@gnu.org>
parents: 3100
diff changeset
254 rmail-summary-redo redo-form
18612999f80c (rmail-new-summary): Set rmail-summary-buffer
Richard M. Stallman <rms@gnu.org>
parents: 3100
diff changeset
255 rmail-total-messages total))))
18612999f80c (rmail-new-summary): Set rmail-summary-buffer
Richard M. Stallman <rms@gnu.org>
parents: 3100
diff changeset
256 (setq rmail-summary-buffer sumbuf))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
257 ;; Now display the summary buffer and go to the right place in it.
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
258 (or was-in-summary
12911
be0fe2c66b9d Require rmail.
Richard M. Stallman <rms@gnu.org>
parents: 12877
diff changeset
259 (progn
be0fe2c66b9d Require rmail.
Richard M. Stallman <rms@gnu.org>
parents: 12877
diff changeset
260 (if (and (one-window-p)
be0fe2c66b9d Require rmail.
Richard M. Stallman <rms@gnu.org>
parents: 12877
diff changeset
261 pop-up-windows (not pop-up-frames))
be0fe2c66b9d Require rmail.
Richard M. Stallman <rms@gnu.org>
parents: 12877
diff changeset
262 ;; If there is just one window, put the summary on the top.
be0fe2c66b9d Require rmail.
Richard M. Stallman <rms@gnu.org>
parents: 12877
diff changeset
263 (progn
be0fe2c66b9d Require rmail.
Richard M. Stallman <rms@gnu.org>
parents: 12877
diff changeset
264 (split-window (selected-window) rmail-summary-window-size)
be0fe2c66b9d Require rmail.
Richard M. Stallman <rms@gnu.org>
parents: 12877
diff changeset
265 (select-window (next-window (frame-first-window)))
be0fe2c66b9d Require rmail.
Richard M. Stallman <rms@gnu.org>
parents: 12877
diff changeset
266 (pop-to-buffer sumbuf)
be0fe2c66b9d Require rmail.
Richard M. Stallman <rms@gnu.org>
parents: 12877
diff changeset
267 ;; If pop-to-buffer did not use that window, delete that
be0fe2c66b9d Require rmail.
Richard M. Stallman <rms@gnu.org>
parents: 12877
diff changeset
268 ;; window. (This can happen if it uses another frame.)
be0fe2c66b9d Require rmail.
Richard M. Stallman <rms@gnu.org>
parents: 12877
diff changeset
269 (if (not (eq sumbuf (window-buffer (frame-first-window))))
be0fe2c66b9d Require rmail.
Richard M. Stallman <rms@gnu.org>
parents: 12877
diff changeset
270 (delete-other-windows)))
be0fe2c66b9d Require rmail.
Richard M. Stallman <rms@gnu.org>
parents: 12877
diff changeset
271 (pop-to-buffer sumbuf))
be0fe2c66b9d Require rmail.
Richard M. Stallman <rms@gnu.org>
parents: 12877
diff changeset
272 (set-buffer rmail-buffer)
be0fe2c66b9d Require rmail.
Richard M. Stallman <rms@gnu.org>
parents: 12877
diff changeset
273 ;; This is how rmail makes the summary buffer reappear.
be0fe2c66b9d Require rmail.
Richard M. Stallman <rms@gnu.org>
parents: 12877
diff changeset
274 ;; We do this here to make the window the proper size.
be0fe2c66b9d Require rmail.
Richard M. Stallman <rms@gnu.org>
parents: 12877
diff changeset
275 (rmail-select-summary nil)
be0fe2c66b9d Require rmail.
Richard M. Stallman <rms@gnu.org>
parents: 12877
diff changeset
276 (set-buffer rmail-summary-buffer)))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
277 (rmail-summary-goto-msg mesg t t)
12877
e5a2fab50a4b (rmail-new-summary): Enable the Input/output menu.
Richard M. Stallman <rms@gnu.org>
parents: 12033
diff changeset
278 (rmail-summary-construct-io-menu)
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
279 (message "Computing summary lines...done")))
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
280
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
281 ;; Low levels of generating a summary.
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
282
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
283 (defun rmail-make-summary-line (msg)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
284 (let ((line (or (aref rmail-summary-vector (1- msg))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
285 (progn
63944
6f8d122757b4 (rmail-summary-redo): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 62764
diff changeset
286 (setq rmail-new-summary-line-count
6f8d122757b4 (rmail-summary-redo): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 62764
diff changeset
287 (1+ rmail-new-summary-line-count))
6f8d122757b4 (rmail-summary-redo): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 62764
diff changeset
288 (if (zerop (% rmail-new-summary-line-count 10))
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
289 (message "Computing summary lines...%d"
63944
6f8d122757b4 (rmail-summary-redo): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 62764
diff changeset
290 rmail-new-summary-line-count))
78395
08bc2cd75b7c (rmail-make-summary-line): Find end of msg number to update deleted flag.
Richard M. Stallman <rms@gnu.org>
parents: 78232
diff changeset
291 (rmail-make-summary-line-1 msg))))
08bc2cd75b7c (rmail-make-summary-line): Find end of msg number to update deleted flag.
Richard M. Stallman <rms@gnu.org>
parents: 78232
diff changeset
292 delpos)
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
293 ;; Fix up the part of the summary that says "deleted" or "unseen".
78395
08bc2cd75b7c (rmail-make-summary-line): Find end of msg number to update deleted flag.
Richard M. Stallman <rms@gnu.org>
parents: 78232
diff changeset
294 (string-match "[0-9]+" line)
08bc2cd75b7c (rmail-make-summary-line): Find end of msg number to update deleted flag.
Richard M. Stallman <rms@gnu.org>
parents: 78232
diff changeset
295 (aset line (match-end 0)
08bc2cd75b7c (rmail-make-summary-line): Find end of msg number to update deleted flag.
Richard M. Stallman <rms@gnu.org>
parents: 78232
diff changeset
296 (if (rmail-message-deleted-p msg) ?D
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
297 (if (= ?0 (char-after (+ 3 (rmail-msgbeg msg))))
78395
08bc2cd75b7c (rmail-make-summary-line): Find end of msg number to update deleted flag.
Richard M. Stallman <rms@gnu.org>
parents: 78232
diff changeset
298 ?- ?\s)))
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
299 line))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
300
17096
4a2d9b3990e3 (rmail-new-summary): Setup rmail-view-buffer.
Kenichi Handa <handa@m17n.org>
parents: 16676
diff changeset
301 ;;;###autoload
17631
35d8e74c6edb Use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17484
diff changeset
302 (defcustom rmail-summary-line-decoder (function identity)
17096
4a2d9b3990e3 (rmail-new-summary): Setup rmail-view-buffer.
Kenichi Handa <handa@m17n.org>
parents: 16676
diff changeset
303 "*Function to decode summary-line.
4a2d9b3990e3 (rmail-new-summary): Setup rmail-view-buffer.
Kenichi Handa <handa@m17n.org>
parents: 16676
diff changeset
304
17631
35d8e74c6edb Use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17484
diff changeset
305 By default, `identity' is set."
35d8e74c6edb Use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17484
diff changeset
306 :type 'function
35d8e74c6edb Use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 17484
diff changeset
307 :group 'rmail-summary)
17096
4a2d9b3990e3 (rmail-new-summary): Setup rmail-view-buffer.
Kenichi Handa <handa@m17n.org>
parents: 16676
diff changeset
308
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
309 (defun rmail-make-summary-line-1 (msg)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
310 (goto-char (rmail-msgbeg msg))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
311 (let* ((lim (save-excursion (forward-line 2) (point)))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
312 pos
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
313 (labels
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
314 (progn
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
315 (forward-char 3)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
316 (concat
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
317 ; (if (save-excursion (re-search-forward ",answered," lim t))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
318 ; "*" "")
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
319 ; (if (save-excursion (re-search-forward ",filed," lim t))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
320 ; "!" "")
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
321 (if (progn (search-forward ",,") (eolp))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
322 ""
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
323 (concat "{"
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
324 (buffer-substring (point)
52683
6b76116caa09 (rmail-make-summary-line-1): Change comma after last label to a space.
Richard M. Stallman <rms@gnu.org>
parents: 52401
diff changeset
325 (progn (end-of-line)
6b76116caa09 (rmail-make-summary-line-1): Change comma after last label to a space.
Richard M. Stallman <rms@gnu.org>
parents: 52401
diff changeset
326 (backward-char)
6b76116caa09 (rmail-make-summary-line-1): Change comma after last label to a space.
Richard M. Stallman <rms@gnu.org>
parents: 52401
diff changeset
327 (if (looking-at ",")
6b76116caa09 (rmail-make-summary-line-1): Change comma after last label to a space.
Richard M. Stallman <rms@gnu.org>
parents: 52401
diff changeset
328 (point)
6b76116caa09 (rmail-make-summary-line-1): Change comma after last label to a space.
Richard M. Stallman <rms@gnu.org>
parents: 52401
diff changeset
329 (1+ (point)))))
6b76116caa09 (rmail-make-summary-line-1): Change comma after last label to a space.
Richard M. Stallman <rms@gnu.org>
parents: 52401
diff changeset
330 " } ")))))
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
331 (line
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
332 (progn
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
333 (forward-line 1)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
334 (if (looking-at "Summary-line: ")
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
335 (progn
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
336 (goto-char (match-end 0))
68399
38032f41ea5b (rmail-make-summary-line-1): Don't set global binding of `line'.
Richard M. Stallman <rms@gnu.org>
parents: 68090
diff changeset
337 (buffer-substring (point)
38032f41ea5b (rmail-make-summary-line-1): Don't set global binding of `line'.
Richard M. Stallman <rms@gnu.org>
parents: 68090
diff changeset
338 (progn (forward-line 1) (point))))))))
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
339 ;; Obsolete status lines lacking a # should be flushed.
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
340 (and line
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
341 (not (string-match "#" line))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
342 (progn
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
343 (delete-region (point)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
344 (progn (forward-line -1) (point)))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
345 (setq line nil)))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
346 ;; If we didn't get a valid status line from the message,
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
347 ;; make a new one and put it in the message.
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
348 (or line
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
349 (let* ((case-fold-search t)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
350 (next (rmail-msgend msg))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
351 (beg (if (progn (goto-char (rmail-msgbeg msg))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
352 (search-forward "\n*** EOOH ***\n" next t))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
353 (point)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
354 (forward-line 1)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
355 (point)))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
356 (end (progn (search-forward "\n\n" nil t) (point))))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
357 (save-restriction
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
358 (narrow-to-region beg end)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
359 (goto-char beg)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
360 (setq line (rmail-make-basic-summary-line)))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
361 (goto-char (rmail-msgbeg msg))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
362 (forward-line 2)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
363 (insert "Summary-line: " line)))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
364 (setq pos (string-match "#" line))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
365 (aset rmail-summary-vector (1- msg)
17096
4a2d9b3990e3 (rmail-new-summary): Setup rmail-view-buffer.
Kenichi Handa <handa@m17n.org>
parents: 16676
diff changeset
366 (funcall rmail-summary-line-decoder
39567
49445c8e650d (rmail-make-summary-line)
Gerd Moellmann <gerd@gnu.org>
parents: 38412
diff changeset
367 (concat (format "%5d " msg)
17096
4a2d9b3990e3 (rmail-new-summary): Setup rmail-view-buffer.
Kenichi Handa <handa@m17n.org>
parents: 16676
diff changeset
368 (substring line 0 pos)
4a2d9b3990e3 (rmail-new-summary): Setup rmail-view-buffer.
Kenichi Handa <handa@m17n.org>
parents: 16676
diff changeset
369 labels
4a2d9b3990e3 (rmail-new-summary): Setup rmail-view-buffer.
Kenichi Handa <handa@m17n.org>
parents: 16676
diff changeset
370 (substring line (1+ pos)))))
4a2d9b3990e3 (rmail-new-summary): Setup rmail-view-buffer.
Kenichi Handa <handa@m17n.org>
parents: 16676
diff changeset
371 ))
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
372
28487
653e53467c66 (rmail-user-mail-address-regexp): New option.
Gerd Moellmann <gerd@gnu.org>
parents: 28180
diff changeset
373 ;;;###autoload
653e53467c66 (rmail-user-mail-address-regexp): New option.
Gerd Moellmann <gerd@gnu.org>
parents: 28180
diff changeset
374 (defcustom rmail-user-mail-address-regexp nil
653e53467c66 (rmail-user-mail-address-regexp): New option.
Gerd Moellmann <gerd@gnu.org>
parents: 28180
diff changeset
375 "*Regexp matching user mail addresses.
653e53467c66 (rmail-user-mail-address-regexp): New option.
Gerd Moellmann <gerd@gnu.org>
parents: 28180
diff changeset
376 If non-nil, this variable is used to identify the correspondent
653e53467c66 (rmail-user-mail-address-regexp): New option.
Gerd Moellmann <gerd@gnu.org>
parents: 28180
diff changeset
377 when receiving new mail. If it matches the address of the sender,
653e53467c66 (rmail-user-mail-address-regexp): New option.
Gerd Moellmann <gerd@gnu.org>
parents: 28180
diff changeset
378 the recipient is taken as correspondent of a mail.
653e53467c66 (rmail-user-mail-address-regexp): New option.
Gerd Moellmann <gerd@gnu.org>
parents: 28180
diff changeset
379 If nil \(default value\), your `user-login-name' and `user-mail-address'
653e53467c66 (rmail-user-mail-address-regexp): New option.
Gerd Moellmann <gerd@gnu.org>
parents: 28180
diff changeset
380 are used to exclude yourself as correspondent.
653e53467c66 (rmail-user-mail-address-regexp): New option.
Gerd Moellmann <gerd@gnu.org>
parents: 28180
diff changeset
381
653e53467c66 (rmail-user-mail-address-regexp): New option.
Gerd Moellmann <gerd@gnu.org>
parents: 28180
diff changeset
382 Usually you don't have to set this variable, except if you collect mails
653e53467c66 (rmail-user-mail-address-regexp): New option.
Gerd Moellmann <gerd@gnu.org>
parents: 28180
diff changeset
383 sent by you under different user names.
46130
d38c5a87f842 (rmail-user-mail-address-regexp): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents: 43481
diff changeset
384 Then it should be a regexp matching your mail addresses.
28487
653e53467c66 (rmail-user-mail-address-regexp): New option.
Gerd Moellmann <gerd@gnu.org>
parents: 28180
diff changeset
385
653e53467c66 (rmail-user-mail-address-regexp): New option.
Gerd Moellmann <gerd@gnu.org>
parents: 28180
diff changeset
386 Setting this variable has an effect only before reading a mail."
653e53467c66 (rmail-user-mail-address-regexp): New option.
Gerd Moellmann <gerd@gnu.org>
parents: 28180
diff changeset
387 :type '(choice (const :tag "None" nil) regexp)
653e53467c66 (rmail-user-mail-address-regexp): New option.
Gerd Moellmann <gerd@gnu.org>
parents: 28180
diff changeset
388 :group 'rmail-retrieve
653e53467c66 (rmail-user-mail-address-regexp): New option.
Gerd Moellmann <gerd@gnu.org>
parents: 28180
diff changeset
389 :version "21.1")
653e53467c66 (rmail-user-mail-address-regexp): New option.
Gerd Moellmann <gerd@gnu.org>
parents: 28180
diff changeset
390
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
391 (defun rmail-make-basic-summary-line ()
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
392 (goto-char (point-min))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
393 (concat (save-excursion
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
394 (if (not (re-search-forward "^Date:" nil t))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
395 " "
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
396 (cond ((re-search-forward "\\([^0-9:]\\)\\([0-3]?[0-9]\\)\\([- \t_]+\\)\\([adfjmnos][aceopu][bcglnprtvy]\\)"
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
397 (save-excursion (end-of-line) (point)) t)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
398 (format "%2d-%3s"
62402
a7e02ef1e3d6 Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents: 52963
diff changeset
399 (string-to-number (buffer-substring
a7e02ef1e3d6 Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents: 52963
diff changeset
400 (match-beginning 2)
a7e02ef1e3d6 Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents: 52963
diff changeset
401 (match-end 2)))
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
402 (buffer-substring
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
403 (match-beginning 4) (match-end 4))))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
404 ((re-search-forward "\\([^a-z]\\)\\([adfjmnos][acepou][bcglnprtvy]\\)\\([-a-z \t_]*\\)\\([0-9][0-9]?\\)"
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
405 (save-excursion (end-of-line) (point)) t)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
406 (format "%2d-%3s"
62402
a7e02ef1e3d6 Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents: 52963
diff changeset
407 (string-to-number (buffer-substring
a7e02ef1e3d6 Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents: 52963
diff changeset
408 (match-beginning 4)
a7e02ef1e3d6 Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents: 52963
diff changeset
409 (match-end 4)))
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
410 (buffer-substring
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
411 (match-beginning 2) (match-end 2))))
15582
2066a7282df9 (rmail-make-basic-summary-line): Accept ISO 8601 dates as well.
Miles Bader <miles@gnu.org>
parents: 15509
diff changeset
412 ((re-search-forward "\\(19\\|20\\)\\([0-9][0-9]\\)-\\([01][0-9]\\)-\\([0-3][0-9]\\)"
2066a7282df9 (rmail-make-basic-summary-line): Accept ISO 8601 dates as well.
Miles Bader <miles@gnu.org>
parents: 15509
diff changeset
413 (save-excursion (end-of-line) (point)) t)
2066a7282df9 (rmail-make-basic-summary-line): Accept ISO 8601 dates as well.
Miles Bader <miles@gnu.org>
parents: 15509
diff changeset
414 (format "%2s%2s%2s"
2066a7282df9 (rmail-make-basic-summary-line): Accept ISO 8601 dates as well.
Miles Bader <miles@gnu.org>
parents: 15509
diff changeset
415 (buffer-substring
2066a7282df9 (rmail-make-basic-summary-line): Accept ISO 8601 dates as well.
Miles Bader <miles@gnu.org>
parents: 15509
diff changeset
416 (match-beginning 2) (match-end 2))
2066a7282df9 (rmail-make-basic-summary-line): Accept ISO 8601 dates as well.
Miles Bader <miles@gnu.org>
parents: 15509
diff changeset
417 (buffer-substring
2066a7282df9 (rmail-make-basic-summary-line): Accept ISO 8601 dates as well.
Miles Bader <miles@gnu.org>
parents: 15509
diff changeset
418 (match-beginning 3) (match-end 3))
2066a7282df9 (rmail-make-basic-summary-line): Accept ISO 8601 dates as well.
Miles Bader <miles@gnu.org>
parents: 15509
diff changeset
419 (buffer-substring
2066a7282df9 (rmail-make-basic-summary-line): Accept ISO 8601 dates as well.
Miles Bader <miles@gnu.org>
parents: 15509
diff changeset
420 (match-beginning 4) (match-end 4))))
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
421 (t "??????"))))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
422 " "
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
423 (save-excursion
50502
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
424 (let* ((from (and (re-search-forward "^From:[ \t]*" nil t)
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
425 (mail-strip-quoted-names
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
426 (buffer-substring
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
427 (1- (point))
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
428 ;; Get all the lines of the From field
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
429 ;; so that we get a whole comment if there is one,
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
430 ;; so that mail-strip-quoted-names can discard it.
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
431 (let ((opoint (point)))
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
432 (while (progn (forward-line 1)
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
433 (looking-at "[ \t]")))
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
434 ;; Back up over newline, then trailing spaces or tabs
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
435 (forward-char -1)
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
436 (skip-chars-backward " \t")
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
437 (point))))))
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
438 len mch lo)
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
439 (if (or (null from)
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
440 (string-match
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
441 (or rmail-user-mail-address-regexp
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
442 (concat "^\\("
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
443 (regexp-quote (user-login-name))
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
444 "\\($\\|@\\)\\|"
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
445 (regexp-quote
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
446 ;; Don't lose if run from init file
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
447 ;; where user-mail-address is not
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
448 ;; set yet.
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
449 (or user-mail-address
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
450 (concat (user-login-name) "@"
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
451 (or mail-host-address
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
452 (system-name)))))
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
453 "\\>\\)"))
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
454 from))
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
455 ;; No From field, or it's this user.
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
456 (save-excursion
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
457 (goto-char (point-min))
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
458 (if (not (re-search-forward "^To:[ \t]*" nil t))
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
459 nil
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
460 (setq from
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
461 (concat "to: "
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
462 (mail-strip-quoted-names
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
463 (buffer-substring
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
464 (point)
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
465 (progn (end-of-line)
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
466 (skip-chars-backward " \t")
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
467 (point)))))))))
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
468 (if (null from)
c94093d2e642 (rmail-make-basic-summary-line): If there's
Richard M. Stallman <rms@gnu.org>
parents: 49637
diff changeset
469 " "
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
470 (setq len (length from))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
471 (setq mch (string-match "[@%]" from))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
472 (format "%25s"
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
473 (if (or (not mch) (<= len 25))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
474 (substring from (max 0 (- len 25)))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
475 (substring from
7368
5e3d372d6016 (rmail-make-basic-summary-line): Show 14 chars before @ and 11 after.
Richard M. Stallman <rms@gnu.org>
parents: 7298
diff changeset
476 (setq lo (cond ((< (- mch 14) 0) 0)
5e3d372d6016 (rmail-make-basic-summary-line): Show 14 chars before @ and 11 after.
Richard M. Stallman <rms@gnu.org>
parents: 7298
diff changeset
477 ((< len (+ mch 11))
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
478 (- len 25))
7368
5e3d372d6016 (rmail-make-basic-summary-line): Show 14 chars before @ and 11 after.
Richard M. Stallman <rms@gnu.org>
parents: 7298
diff changeset
479 (t (- mch 14))))
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
480 (min len (+ lo 25))))))))
16389
30e3d4ddca44 (rmail-summary-line-count-flag): Renamed from rmail-summary-line-count-p.
Richard M. Stallman <rms@gnu.org>
parents: 16388
diff changeset
481 (if rmail-summary-line-count-flag
16388
9f29d4bcdc98 (rmail-summary-line-count-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16344
diff changeset
482 (save-excursion
9f29d4bcdc98 (rmail-summary-line-count-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16344
diff changeset
483 (save-restriction
9f29d4bcdc98 (rmail-summary-line-count-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16344
diff changeset
484 (widen)
9f29d4bcdc98 (rmail-summary-line-count-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16344
diff changeset
485 (let ((beg (rmail-msgbeg msgnum))
9f29d4bcdc98 (rmail-summary-line-count-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16344
diff changeset
486 (end (rmail-msgend msgnum))
9f29d4bcdc98 (rmail-summary-line-count-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16344
diff changeset
487 lines)
9f29d4bcdc98 (rmail-summary-line-count-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16344
diff changeset
488 (save-excursion
9f29d4bcdc98 (rmail-summary-line-count-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16344
diff changeset
489 (goto-char beg)
9f29d4bcdc98 (rmail-summary-line-count-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16344
diff changeset
490 ;; Count only lines in the reformatted header,
9f29d4bcdc98 (rmail-summary-line-count-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16344
diff changeset
491 ;; if we have reformatted it.
9f29d4bcdc98 (rmail-summary-line-count-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16344
diff changeset
492 (search-forward "\n*** EOOH ***\n" end t)
9f29d4bcdc98 (rmail-summary-line-count-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16344
diff changeset
493 (setq lines (count-lines (point) end)))
9f29d4bcdc98 (rmail-summary-line-count-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16344
diff changeset
494 (format (cond
9f29d4bcdc98 (rmail-summary-line-count-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16344
diff changeset
495 ((<= lines 9) " [%d]")
9f29d4bcdc98 (rmail-summary-line-count-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16344
diff changeset
496 ((<= lines 99) " [%d]")
9f29d4bcdc98 (rmail-summary-line-count-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16344
diff changeset
497 ((<= lines 999) " [%3d]")
9f29d4bcdc98 (rmail-summary-line-count-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16344
diff changeset
498 (t "[%d]"))
9f29d4bcdc98 (rmail-summary-line-count-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16344
diff changeset
499 lines))))
9f29d4bcdc98 (rmail-summary-line-count-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 16344
diff changeset
500 " ")
14681
27bbf45f3393 (rmail-make-basic-summary-line): Fix previous change.
Erik Naggum <erik@naggum.no>
parents: 14675
diff changeset
501 " #" ;The # is part of the format.
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
502 (if (re-search-forward "^Subject:" nil t)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
503 (progn (skip-chars-forward " \t")
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
504 (buffer-substring (point)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
505 (progn (end-of-line)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
506 (point))))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
507 (re-search-forward "[\n][\n]+" nil t)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
508 (buffer-substring (point) (progn (end-of-line) (point))))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
509 "\n"))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
510
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
511 ;; Simple motion in a summary buffer.
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
512
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
513 (defun rmail-summary-next-all (&optional number)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
514 (interactive "p")
2164
6e276a32aef1 (rmail-summary-next-msg): Call display-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 2077
diff changeset
515 (forward-line (if number number 1))
9540
cde03222210e (rmail-summary-previous-all)
Richard M. Stallman <rms@gnu.org>
parents: 9482
diff changeset
516 ;; It doesn't look nice to move forward past the last message line.
cde03222210e (rmail-summary-previous-all)
Richard M. Stallman <rms@gnu.org>
parents: 9482
diff changeset
517 (and (eobp) (> number 0)
cde03222210e (rmail-summary-previous-all)
Richard M. Stallman <rms@gnu.org>
parents: 9482
diff changeset
518 (forward-line -1))
2164
6e276a32aef1 (rmail-summary-next-msg): Call display-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 2077
diff changeset
519 (display-buffer rmail-buffer))
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
520
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
521 (defun rmail-summary-previous-all (&optional number)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
522 (interactive "p")
2164
6e276a32aef1 (rmail-summary-next-msg): Call display-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 2077
diff changeset
523 (forward-line (- (if number number 1)))
9540
cde03222210e (rmail-summary-previous-all)
Richard M. Stallman <rms@gnu.org>
parents: 9482
diff changeset
524 ;; It doesn't look nice to move forward past the last message line.
cde03222210e (rmail-summary-previous-all)
Richard M. Stallman <rms@gnu.org>
parents: 9482
diff changeset
525 (and (eobp) (< number 0)
cde03222210e (rmail-summary-previous-all)
Richard M. Stallman <rms@gnu.org>
parents: 9482
diff changeset
526 (forward-line -1))
2164
6e276a32aef1 (rmail-summary-next-msg): Call display-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 2077
diff changeset
527 (display-buffer rmail-buffer))
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
528
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
529 (defun rmail-summary-next-msg (&optional number)
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
530 "Display next non-deleted msg from rmail file.
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
531 With optional prefix argument NUMBER, moves forward this number of non-deleted
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
532 messages, or backward if NUMBER is negative."
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
533 (interactive "p")
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
534 (forward-line 0)
3466
c8f52c44d9a4 (rmail-summary-expunge-and-save): Do save-buffer last.
Richard M. Stallman <rms@gnu.org>
parents: 3461
diff changeset
535 (and (> number 0) (end-of-line))
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
536 (let ((count (if (< number 0) (- number) number))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
537 (search (if (> number 0) 're-search-forward 're-search-backward))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
538 (non-del-msg-found nil))
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
539 (while (and (> count 0) (setq non-del-msg-found
69403
ecd9a20a44b0 (rmail-summary-next-msg): Skip deleted messages, where "D" is the
Eli Zaretskii <eliz@gnu.org>
parents: 68648
diff changeset
540 (or (funcall search "^.....[^D]" nil t)
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
541 non-del-msg-found)))
2164
6e276a32aef1 (rmail-summary-next-msg): Call display-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 2077
diff changeset
542 (setq count (1- count))))
3466
c8f52c44d9a4 (rmail-summary-expunge-and-save): Do save-buffer last.
Richard M. Stallman <rms@gnu.org>
parents: 3461
diff changeset
543 (beginning-of-line)
49637
32bf542aaf1c (rmail-summary-previous-msg): Add docstring.
John Paul Wallington <jpw@pobox.com>
parents: 49598
diff changeset
544 (display-buffer rmail-view-buffer))
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
545
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
546 (defun rmail-summary-previous-msg (&optional number)
49637
32bf542aaf1c (rmail-summary-previous-msg): Add docstring.
John Paul Wallington <jpw@pobox.com>
parents: 49598
diff changeset
547 "Display previous non-deleted msg from rmail file.
32bf542aaf1c (rmail-summary-previous-msg): Add docstring.
John Paul Wallington <jpw@pobox.com>
parents: 49598
diff changeset
548 With optional prefix argument NUMBER, moves backward this number of
32bf542aaf1c (rmail-summary-previous-msg): Add docstring.
John Paul Wallington <jpw@pobox.com>
parents: 49598
diff changeset
549 non-deleted messages."
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
550 (interactive "p")
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
551 (rmail-summary-next-msg (- (if number number 1))))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
552
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
553 (defun rmail-summary-next-labeled-message (n labels)
49637
32bf542aaf1c (rmail-summary-previous-msg): Add docstring.
John Paul Wallington <jpw@pobox.com>
parents: 49598
diff changeset
554 "Show next message with LABELS. Defaults to last labels used.
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
555 With prefix argument N moves forward N messages with these labels."
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
556 (interactive "p\nsMove to next msg with labels: ")
15658
996e272e9192 (rmail-summary-next-labeled-message)
Karl Heuer <kwzh@gnu.org>
parents: 15645
diff changeset
557 (let (msg)
996e272e9192 (rmail-summary-next-labeled-message)
Karl Heuer <kwzh@gnu.org>
parents: 15645
diff changeset
558 (save-excursion
996e272e9192 (rmail-summary-next-labeled-message)
Karl Heuer <kwzh@gnu.org>
parents: 15645
diff changeset
559 (set-buffer rmail-buffer)
996e272e9192 (rmail-summary-next-labeled-message)
Karl Heuer <kwzh@gnu.org>
parents: 15645
diff changeset
560 (rmail-next-labeled-message n labels)
996e272e9192 (rmail-summary-next-labeled-message)
Karl Heuer <kwzh@gnu.org>
parents: 15645
diff changeset
561 (setq msg rmail-current-message))
996e272e9192 (rmail-summary-next-labeled-message)
Karl Heuer <kwzh@gnu.org>
parents: 15645
diff changeset
562 (rmail-summary-goto-msg msg)))
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
563
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
564 (defun rmail-summary-previous-labeled-message (n labels)
49637
32bf542aaf1c (rmail-summary-previous-msg): Add docstring.
John Paul Wallington <jpw@pobox.com>
parents: 49598
diff changeset
565 "Show previous message with LABELS. Defaults to last labels used.
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
566 With prefix argument N moves backward N messages with these labels."
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
567 (interactive "p\nsMove to previous msg with labels: ")
15658
996e272e9192 (rmail-summary-next-labeled-message)
Karl Heuer <kwzh@gnu.org>
parents: 15645
diff changeset
568 (let (msg)
996e272e9192 (rmail-summary-next-labeled-message)
Karl Heuer <kwzh@gnu.org>
parents: 15645
diff changeset
569 (save-excursion
996e272e9192 (rmail-summary-next-labeled-message)
Karl Heuer <kwzh@gnu.org>
parents: 15645
diff changeset
570 (set-buffer rmail-buffer)
996e272e9192 (rmail-summary-next-labeled-message)
Karl Heuer <kwzh@gnu.org>
parents: 15645
diff changeset
571 (rmail-previous-labeled-message n labels)
996e272e9192 (rmail-summary-next-labeled-message)
Karl Heuer <kwzh@gnu.org>
parents: 15645
diff changeset
572 (setq msg rmail-current-message))
996e272e9192 (rmail-summary-next-labeled-message)
Karl Heuer <kwzh@gnu.org>
parents: 15645
diff changeset
573 (rmail-summary-goto-msg msg)))
10663
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
574
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
575 (defun rmail-summary-next-same-subject (n)
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
576 "Go to the next message in the summary having the same subject.
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
577 With prefix argument N, do this N times.
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
578 If N is negative, go backwards."
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
579 (interactive "p")
68090
9b341a563aea (rmail-summary-by-topic): Use
Alex Schroeder <alex@gnu.org>
parents: 65680
diff changeset
580 (let ((forward (> n 0))
9b341a563aea (rmail-summary-by-topic): Use
Alex Schroeder <alex@gnu.org>
parents: 65680
diff changeset
581 search-regexp i found)
9b341a563aea (rmail-summary-by-topic): Use
Alex Schroeder <alex@gnu.org>
parents: 65680
diff changeset
582 (with-current-buffer rmail-buffer
9b341a563aea (rmail-summary-by-topic): Use
Alex Schroeder <alex@gnu.org>
parents: 65680
diff changeset
583 (setq search-regexp (rmail-current-subject-regexp)
9b341a563aea (rmail-summary-by-topic): Use
Alex Schroeder <alex@gnu.org>
parents: 65680
diff changeset
584 i rmail-current-message))
10663
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
585 (save-excursion
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
586 (while (and (/= n 0)
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
587 (if forward
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
588 (not (eobp))
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
589 (not (bobp))))
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
590 (let (done)
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
591 (while (and (not done)
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
592 (if forward
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
593 (not (eobp))
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
594 (not (bobp))))
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
595 ;; Advance thru summary.
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
596 (forward-line (if forward 1 -1))
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
597 ;; Get msg number of this line.
62402
a7e02ef1e3d6 Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents: 52963
diff changeset
598 (setq i (string-to-number
10663
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
599 (buffer-substring (point)
39567
49445c8e650d (rmail-make-summary-line)
Gerd Moellmann <gerd@gnu.org>
parents: 38412
diff changeset
600 (min (point-max) (+ 6 (point))))))
10663
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
601 ;; See if that msg has desired subject.
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
602 (save-excursion
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
603 (set-buffer rmail-buffer)
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
604 (save-restriction
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
605 (widen)
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
606 (goto-char (rmail-msgbeg i))
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
607 (search-forward "\n*** EOOH ***\n")
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
608 (let ((beg (point)) end)
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
609 (search-forward "\n\n")
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
610 (setq end (point))
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
611 (goto-char beg)
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
612 (setq done (re-search-forward search-regexp end t))))))
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
613 (if done (setq found i)))
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
614 (setq n (if forward (1- n) (1+ n)))))
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
615 (if found
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
616 (rmail-summary-goto-msg found)
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
617 (error "No %s message with same subject"
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
618 (if forward "following" "previous")))))
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
619
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
620 (defun rmail-summary-previous-same-subject (n)
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
621 "Go to the previous message in the summary having the same subject.
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
622 With prefix argument N, do this N times.
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
623 If N is negative, go forwards instead."
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
624 (interactive "p")
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
625 (rmail-summary-next-same-subject (- n)))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
626
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
627 ;; Delete and undelete summary commands.
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
628
17484
3303fa112347 (rmail-summary-delete-forward): Argument is now a repeat count.
Richard M. Stallman <rms@gnu.org>
parents: 17096
diff changeset
629 (defun rmail-summary-delete-forward (&optional count)
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
630 "Delete this message and move to next nondeleted one.
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
631 Deleted messages stay in the file until the \\[rmail-expunge] command is given.
17484
3303fa112347 (rmail-summary-delete-forward): Argument is now a repeat count.
Richard M. Stallman <rms@gnu.org>
parents: 17096
diff changeset
632 A prefix argument serves as a repeat count;
3303fa112347 (rmail-summary-delete-forward): Argument is now a repeat count.
Richard M. Stallman <rms@gnu.org>
parents: 17096
diff changeset
633 a negative argument means to delete and move backward."
3303fa112347 (rmail-summary-delete-forward): Argument is now a repeat count.
Richard M. Stallman <rms@gnu.org>
parents: 17096
diff changeset
634 (interactive "p")
17867
4b87104dcbc7 (rmail-summary-delete-forward): Force the
Richard M. Stallman <rms@gnu.org>
parents: 17631
diff changeset
635 (unless (numberp count) (setq count 1))
17484
3303fa112347 (rmail-summary-delete-forward): Argument is now a repeat count.
Richard M. Stallman <rms@gnu.org>
parents: 17096
diff changeset
636 (let (end del-msg
3303fa112347 (rmail-summary-delete-forward): Argument is now a repeat count.
Richard M. Stallman <rms@gnu.org>
parents: 17096
diff changeset
637 (backward (< count 0)))
3303fa112347 (rmail-summary-delete-forward): Argument is now a repeat count.
Richard M. Stallman <rms@gnu.org>
parents: 17096
diff changeset
638 (while (/= count 0)
3303fa112347 (rmail-summary-delete-forward): Argument is now a repeat count.
Richard M. Stallman <rms@gnu.org>
parents: 17096
diff changeset
639 (rmail-summary-goto-msg)
3303fa112347 (rmail-summary-delete-forward): Argument is now a repeat count.
Richard M. Stallman <rms@gnu.org>
parents: 17096
diff changeset
640 (with-current-buffer rmail-buffer
3303fa112347 (rmail-summary-delete-forward): Argument is now a repeat count.
Richard M. Stallman <rms@gnu.org>
parents: 17096
diff changeset
641 (rmail-delete-message)
3303fa112347 (rmail-summary-delete-forward): Argument is now a repeat count.
Richard M. Stallman <rms@gnu.org>
parents: 17096
diff changeset
642 (setq del-msg rmail-current-message))
5370
45ed020959f1 (rmail-summary-delete-forward): Move to next or prev msg
Richard M. Stallman <rms@gnu.org>
parents: 5275
diff changeset
643 (rmail-summary-mark-deleted del-msg)
45ed020959f1 (rmail-summary-delete-forward): Move to next or prev msg
Richard M. Stallman <rms@gnu.org>
parents: 5275
diff changeset
644 (while (and (not (if backward (bobp) (eobp)))
5514
8112b5b2651b (rmail-summary-delete-forward): Fix regexp
Richard M. Stallman <rms@gnu.org>
parents: 5507
diff changeset
645 (save-excursion (beginning-of-line)
9151
02bee4d2de9a (rmail-summary-delete-forward): Regexp for recognizing deleted message
Richard M. Stallman <rms@gnu.org>
parents: 8997
diff changeset
646 (looking-at " *[0-9]+D")))
9545
0773b7048206 (rmail-summary-delete-forward): Don't move fwd to eob.
Richard M. Stallman <rms@gnu.org>
parents: 9540
diff changeset
647 (forward-line (if backward -1 1)))
0773b7048206 (rmail-summary-delete-forward): Don't move fwd to eob.
Richard M. Stallman <rms@gnu.org>
parents: 9540
diff changeset
648 ;; It looks ugly to move to the empty line at end of buffer.
0773b7048206 (rmail-summary-delete-forward): Don't move fwd to eob.
Richard M. Stallman <rms@gnu.org>
parents: 9540
diff changeset
649 (and (eobp) (not backward)
17484
3303fa112347 (rmail-summary-delete-forward): Argument is now a repeat count.
Richard M. Stallman <rms@gnu.org>
parents: 17096
diff changeset
650 (forward-line -1))
3303fa112347 (rmail-summary-delete-forward): Argument is now a repeat count.
Richard M. Stallman <rms@gnu.org>
parents: 17096
diff changeset
651 (setq count
3303fa112347 (rmail-summary-delete-forward): Argument is now a repeat count.
Richard M. Stallman <rms@gnu.org>
parents: 17096
diff changeset
652 (if (> count 0) (1- count) (1+ count))))))
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
653
17484
3303fa112347 (rmail-summary-delete-forward): Argument is now a repeat count.
Richard M. Stallman <rms@gnu.org>
parents: 17096
diff changeset
654 (defun rmail-summary-delete-backward (&optional count)
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
655 "Delete this message and move to previous nondeleted one.
17484
3303fa112347 (rmail-summary-delete-forward): Argument is now a repeat count.
Richard M. Stallman <rms@gnu.org>
parents: 17096
diff changeset
656 Deleted messages stay in the file until the \\[rmail-expunge] command is given.
3303fa112347 (rmail-summary-delete-forward): Argument is now a repeat count.
Richard M. Stallman <rms@gnu.org>
parents: 17096
diff changeset
657 A prefix argument serves as a repeat count;
3303fa112347 (rmail-summary-delete-forward): Argument is now a repeat count.
Richard M. Stallman <rms@gnu.org>
parents: 17096
diff changeset
658 a negative argument means to delete and move forward."
3303fa112347 (rmail-summary-delete-forward): Argument is now a repeat count.
Richard M. Stallman <rms@gnu.org>
parents: 17096
diff changeset
659 (interactive "p")
3303fa112347 (rmail-summary-delete-forward): Argument is now a repeat count.
Richard M. Stallman <rms@gnu.org>
parents: 17096
diff changeset
660 (rmail-summary-delete-forward (- count)))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
661
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
662 (defun rmail-summary-mark-deleted (&optional n undel)
14293
87b4bd8fea26 (rmail-make-basic-summary-line): Include msg line number.
Karl Heuer <kwzh@gnu.org>
parents: 14169
diff changeset
663 ;; Since third arg is t, this only alters the summary, not the Rmail buf.
3100
eb6ae6faff24 (rmail-summary-mark-deleted): Check for end of buffer.
Richard M. Stallman <rms@gnu.org>
parents: 2233
diff changeset
664 (and n (rmail-summary-goto-msg n t t))
eb6ae6faff24 (rmail-summary-mark-deleted): Check for end of buffer.
Richard M. Stallman <rms@gnu.org>
parents: 2233
diff changeset
665 (or (eobp)
10489
5906e2f35eb9 (rmail-summary-update-highlight): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10142
diff changeset
666 (not (overlay-get rmail-summary-overlay 'face))
3100
eb6ae6faff24 (rmail-summary-mark-deleted): Check for end of buffer.
Richard M. Stallman <rms@gnu.org>
parents: 2233
diff changeset
667 (let ((buffer-read-only nil))
eb6ae6faff24 (rmail-summary-mark-deleted): Check for end of buffer.
Richard M. Stallman <rms@gnu.org>
parents: 2233
diff changeset
668 (skip-chars-forward " ")
eb6ae6faff24 (rmail-summary-mark-deleted): Check for end of buffer.
Richard M. Stallman <rms@gnu.org>
parents: 2233
diff changeset
669 (skip-chars-forward "[0-9]")
eb6ae6faff24 (rmail-summary-mark-deleted): Check for end of buffer.
Richard M. Stallman <rms@gnu.org>
parents: 2233
diff changeset
670 (if undel
eb6ae6faff24 (rmail-summary-mark-deleted): Check for end of buffer.
Richard M. Stallman <rms@gnu.org>
parents: 2233
diff changeset
671 (if (looking-at "D")
eb6ae6faff24 (rmail-summary-mark-deleted): Check for end of buffer.
Richard M. Stallman <rms@gnu.org>
parents: 2233
diff changeset
672 (progn (delete-char 1) (insert " ")))
eb6ae6faff24 (rmail-summary-mark-deleted): Check for end of buffer.
Richard M. Stallman <rms@gnu.org>
parents: 2233
diff changeset
673 (delete-char 1)
eb6ae6faff24 (rmail-summary-mark-deleted): Check for end of buffer.
Richard M. Stallman <rms@gnu.org>
parents: 2233
diff changeset
674 (insert "D"))))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
675 (beginning-of-line))
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
676
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
677 (defun rmail-summary-mark-undeleted (n)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
678 (rmail-summary-mark-deleted n t))
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
679
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
680 (defun rmail-summary-deleted-p (&optional n)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
681 (save-excursion
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
682 (and n (rmail-summary-goto-msg n nil t))
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
683 (skip-chars-forward " ")
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
684 (skip-chars-forward "[0-9]")
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
685 (looking-at "D")))
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
686
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
687 (defun rmail-summary-undelete (&optional arg)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
688 "Undelete current message.
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
689 Optional prefix ARG means undelete ARG previous messages."
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
690 (interactive "p")
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
691 (if (/= arg 1)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
692 (rmail-summary-undelete-many arg)
5678
3824222fed2e (rmail-summary-undelete): If we don't undelete anything, don't move point.
Richard M. Stallman <rms@gnu.org>
parents: 5514
diff changeset
693 (let ((buffer-read-only nil)
3824222fed2e (rmail-summary-undelete): If we don't undelete anything, don't move point.
Richard M. Stallman <rms@gnu.org>
parents: 5514
diff changeset
694 (opoint (point)))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
695 (end-of-line)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
696 (cond ((re-search-backward "\\(^ *[0-9]*\\)\\(D\\)" nil t)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
697 (replace-match "\\1 ")
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
698 (rmail-summary-goto-msg)
37614
17db314acfc2 (rmail-message-subject-p): Process the result
Gerd Moellmann <gerd@gnu.org>
parents: 37590
diff changeset
699 (if rmail-enable-mime
17db314acfc2 (rmail-message-subject-p): Process the result
Gerd Moellmann <gerd@gnu.org>
parents: 37590
diff changeset
700 (set-buffer rmail-buffer)
17db314acfc2 (rmail-message-subject-p): Process the result
Gerd Moellmann <gerd@gnu.org>
parents: 37590
diff changeset
701 (pop-to-buffer rmail-buffer))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
702 (and (rmail-message-deleted-p rmail-current-message)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
703 (rmail-undelete-previous-message))
37614
17db314acfc2 (rmail-message-subject-p): Process the result
Gerd Moellmann <gerd@gnu.org>
parents: 37590
diff changeset
704 (if rmail-enable-mime
17db314acfc2 (rmail-message-subject-p): Process the result
Gerd Moellmann <gerd@gnu.org>
parents: 37590
diff changeset
705 (pop-to-buffer rmail-view-buffer))
5678
3824222fed2e (rmail-summary-undelete): If we don't undelete anything, don't move point.
Richard M. Stallman <rms@gnu.org>
parents: 5514
diff changeset
706 (pop-to-buffer rmail-summary-buffer))
3824222fed2e (rmail-summary-undelete): If we don't undelete anything, don't move point.
Richard M. Stallman <rms@gnu.org>
parents: 5514
diff changeset
707 (t (goto-char opoint))))))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
708
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
709 (defun rmail-summary-undelete-many (&optional n)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
710 "Undelete all deleted msgs, optional prefix arg N means undelete N prev msgs."
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
711 (interactive "P")
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
712 (save-excursion
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
713 (set-buffer rmail-buffer)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
714 (let* ((init-msg (if n rmail-current-message rmail-total-messages))
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
715 (rmail-current-message init-msg)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
716 (n (or n rmail-total-messages))
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
717 (msgs-undeled 0))
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
718 (while (and (> rmail-current-message 0)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
719 (< msgs-undeled n))
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
720 (if (rmail-message-deleted-p rmail-current-message)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
721 (progn (rmail-set-attribute "deleted" nil)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
722 (setq msgs-undeled (1+ msgs-undeled))))
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
723 (setq rmail-current-message (1- rmail-current-message)))
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
724 (set-buffer rmail-summary-buffer)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
725 (setq rmail-current-message init-msg msgs-undeled 0)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
726 (while (and (> rmail-current-message 0)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
727 (< msgs-undeled n))
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
728 (if (rmail-summary-deleted-p rmail-current-message)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
729 (progn (rmail-summary-mark-undeleted rmail-current-message)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
730 (setq msgs-undeled (1+ msgs-undeled))))
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
731 (setq rmail-current-message (1- rmail-current-message))))
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
732 (rmail-summary-goto-msg)))
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
733
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
734 ;; Rmail Summary mode is suitable only for specially formatted data.
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
735 (put 'rmail-summary-mode 'mode-class 'special)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
736
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
737 (defun rmail-summary-mode ()
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
738 "Rmail Summary Mode is invoked from Rmail Mode by using \\<rmail-mode-map>\\[rmail-summary].
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
739 As commands are issued in the summary buffer, they are applied to the
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
740 corresponding mail messages in the rmail buffer.
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
741
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
742 All normal editing commands are turned off.
5121
864d3ca7f2b6 (rmail-summary-wipe): If rmail buffer is not visible,
Richard M. Stallman <rms@gnu.org>
parents: 5006
diff changeset
743 Instead, nearly all the Rmail mode commands are available,
864d3ca7f2b6 (rmail-summary-wipe): If rmail buffer is not visible,
Richard M. Stallman <rms@gnu.org>
parents: 5006
diff changeset
744 though many of them move only among the messages in the summary.
864d3ca7f2b6 (rmail-summary-wipe): If rmail buffer is not visible,
Richard M. Stallman <rms@gnu.org>
parents: 5006
diff changeset
745
864d3ca7f2b6 (rmail-summary-wipe): If rmail buffer is not visible,
Richard M. Stallman <rms@gnu.org>
parents: 5006
diff changeset
746 These additional commands exist:
864d3ca7f2b6 (rmail-summary-wipe): If rmail buffer is not visible,
Richard M. Stallman <rms@gnu.org>
parents: 5006
diff changeset
747
864d3ca7f2b6 (rmail-summary-wipe): If rmail buffer is not visible,
Richard M. Stallman <rms@gnu.org>
parents: 5006
diff changeset
748 \\[rmail-summary-undelete-many] Undelete all or prefix arg deleted messages.
864d3ca7f2b6 (rmail-summary-wipe): If rmail buffer is not visible,
Richard M. Stallman <rms@gnu.org>
parents: 5006
diff changeset
749 \\[rmail-summary-wipe] Delete the summary and go to the Rmail buffer.
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
750
5121
864d3ca7f2b6 (rmail-summary-wipe): If rmail buffer is not visible,
Richard M. Stallman <rms@gnu.org>
parents: 5006
diff changeset
751 Commands for sorting the summary:
864d3ca7f2b6 (rmail-summary-wipe): If rmail buffer is not visible,
Richard M. Stallman <rms@gnu.org>
parents: 5006
diff changeset
752
864d3ca7f2b6 (rmail-summary-wipe): If rmail buffer is not visible,
Richard M. Stallman <rms@gnu.org>
parents: 5006
diff changeset
753 \\[rmail-summary-sort-by-date] Sort by date.
864d3ca7f2b6 (rmail-summary-wipe): If rmail buffer is not visible,
Richard M. Stallman <rms@gnu.org>
parents: 5006
diff changeset
754 \\[rmail-summary-sort-by-subject] Sort by subject.
864d3ca7f2b6 (rmail-summary-wipe): If rmail buffer is not visible,
Richard M. Stallman <rms@gnu.org>
parents: 5006
diff changeset
755 \\[rmail-summary-sort-by-author] Sort by author.
864d3ca7f2b6 (rmail-summary-wipe): If rmail buffer is not visible,
Richard M. Stallman <rms@gnu.org>
parents: 5006
diff changeset
756 \\[rmail-summary-sort-by-recipient] Sort by recipient.
864d3ca7f2b6 (rmail-summary-wipe): If rmail buffer is not visible,
Richard M. Stallman <rms@gnu.org>
parents: 5006
diff changeset
757 \\[rmail-summary-sort-by-correspondent] Sort by correspondent.
6717
2121bf252398 (rmail-summary-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6688
diff changeset
758 \\[rmail-summary-sort-by-lines] Sort by lines.
37590
003e23c611eb (rmail-summary-sort-by-labels): Renamed
Gerd Moellmann <gerd@gnu.org>
parents: 36746
diff changeset
759 \\[rmail-summary-sort-by-labels] Sort by labels."
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
760 (interactive)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
761 (kill-all-local-variables)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
762 (setq major-mode 'rmail-summary-mode)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
763 (setq mode-name "RMAIL Summary")
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
764 (setq truncate-lines t)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
765 (setq buffer-read-only t)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
766 (set-syntax-table text-mode-syntax-table)
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
767 (make-local-variable 'rmail-buffer)
17096
4a2d9b3990e3 (rmail-new-summary): Setup rmail-view-buffer.
Kenichi Handa <handa@m17n.org>
parents: 16676
diff changeset
768 (make-local-variable 'rmail-view-buffer)
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
769 (make-local-variable 'rmail-total-messages)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
770 (make-local-variable 'rmail-current-message)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
771 (setq rmail-current-message nil)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
772 (make-local-variable 'rmail-summary-redo)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
773 (setq rmail-summary-redo nil)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
774 (make-local-variable 'revert-buffer-function)
9482
7330d8566c13 * rmailsum.el: (rmail-summary-mode): Set font-lock-defaults.
Simon Marshall <simon@gnu.org>
parents: 9448
diff changeset
775 (make-local-variable 'font-lock-defaults)
7330d8566c13 * rmailsum.el: (rmail-summary-mode): Set font-lock-defaults.
Simon Marshall <simon@gnu.org>
parents: 9448
diff changeset
776 (setq font-lock-defaults '(rmail-summary-font-lock-keywords t))
6724
6728ad7f85e9 (rmail-summary-disable): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6717
diff changeset
777 (rmail-summary-enable)
62764
4bce01bf6006 (rmail-summary-mode): Use run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents: 62402
diff changeset
778 (run-mode-hooks 'rmail-summary-mode-hook))
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
779
6724
6728ad7f85e9 (rmail-summary-disable): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6717
diff changeset
780 ;; Summary features need to be disabled during edit mode.
6728ad7f85e9 (rmail-summary-disable): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6717
diff changeset
781 (defun rmail-summary-disable ()
6726
d6bc6057d197 Fix previous change.
Karl Heuer <kwzh@gnu.org>
parents: 6724
diff changeset
782 (use-local-map text-mode-map)
14362
55ffd73831cb Use make-local-hook for post-command-hook
Simon Marshall <simon@gnu.org>
parents: 14293
diff changeset
783 (remove-hook 'post-command-hook 'rmail-summary-rmail-update t)
6726
d6bc6057d197 Fix previous change.
Karl Heuer <kwzh@gnu.org>
parents: 6724
diff changeset
784 (setq revert-buffer-function nil))
6724
6728ad7f85e9 (rmail-summary-disable): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6717
diff changeset
785
6728ad7f85e9 (rmail-summary-disable): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6717
diff changeset
786 (defun rmail-summary-enable ()
6726
d6bc6057d197 Fix previous change.
Karl Heuer <kwzh@gnu.org>
parents: 6724
diff changeset
787 (use-local-map rmail-summary-mode-map)
14362
55ffd73831cb Use make-local-hook for post-command-hook
Simon Marshall <simon@gnu.org>
parents: 14293
diff changeset
788 (add-hook 'post-command-hook 'rmail-summary-rmail-update nil t)
6726
d6bc6057d197 Fix previous change.
Karl Heuer <kwzh@gnu.org>
parents: 6724
diff changeset
789 (setq revert-buffer-function 'rmail-update-summary))
6724
6728ad7f85e9 (rmail-summary-disable): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6717
diff changeset
790
16242
fa3885bdc49c (rmail-summary-next-same-subject): Don't set
Richard M. Stallman <rms@gnu.org>
parents: 15658
diff changeset
791 (defvar rmail-summary-put-back-unseen nil
fa3885bdc49c (rmail-summary-next-same-subject): Don't set
Richard M. Stallman <rms@gnu.org>
parents: 15658
diff changeset
792 "Used for communicating between calls to `rmail-summary-rmail-update'.
fa3885bdc49c (rmail-summary-next-same-subject): Don't set
Richard M. Stallman <rms@gnu.org>
parents: 15658
diff changeset
793 If it moves to a message within an Incremental Search, and removes
fa3885bdc49c (rmail-summary-next-same-subject): Don't set
Richard M. Stallman <rms@gnu.org>
parents: 15658
diff changeset
794 the `unseen' attribute from that message, it sets this flag
fa3885bdc49c (rmail-summary-next-same-subject): Don't set
Richard M. Stallman <rms@gnu.org>
parents: 15658
diff changeset
795 so that if the next motion between messages is in the same Incremental
fa3885bdc49c (rmail-summary-next-same-subject): Don't set
Richard M. Stallman <rms@gnu.org>
parents: 15658
diff changeset
796 Search, the `unseen' attribute is restored.")
fa3885bdc49c (rmail-summary-next-same-subject): Don't set
Richard M. Stallman <rms@gnu.org>
parents: 15658
diff changeset
797
2164
6e276a32aef1 (rmail-summary-next-msg): Call display-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 2077
diff changeset
798 ;; Show in Rmail the message described by the summary line that point is on,
6e276a32aef1 (rmail-summary-next-msg): Call display-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 2077
diff changeset
799 ;; but only if the Rmail buffer is already visible.
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
800 ;; This is a post-command-hook in summary buffers.
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
801 (defun rmail-summary-rmail-update ()
6961
666f11765323 (rmail-summary-rmail-update): Update rmail buffer even if it isn't displayed.
Karl Heuer <kwzh@gnu.org>
parents: 6762
diff changeset
802 (let (buffer-read-only)
666f11765323 (rmail-summary-rmail-update): Update rmail buffer even if it isn't displayed.
Karl Heuer <kwzh@gnu.org>
parents: 6762
diff changeset
803 (save-excursion
666f11765323 (rmail-summary-rmail-update): Update rmail buffer even if it isn't displayed.
Karl Heuer <kwzh@gnu.org>
parents: 6762
diff changeset
804 ;; If at end of buffer, pretend we are on the last text line.
666f11765323 (rmail-summary-rmail-update): Update rmail buffer even if it isn't displayed.
Karl Heuer <kwzh@gnu.org>
parents: 6762
diff changeset
805 (if (eobp)
666f11765323 (rmail-summary-rmail-update): Update rmail buffer even if it isn't displayed.
Karl Heuer <kwzh@gnu.org>
parents: 6762
diff changeset
806 (forward-line -1))
666f11765323 (rmail-summary-rmail-update): Update rmail buffer even if it isn't displayed.
Karl Heuer <kwzh@gnu.org>
parents: 6762
diff changeset
807 (beginning-of-line)
666f11765323 (rmail-summary-rmail-update): Update rmail buffer even if it isn't displayed.
Karl Heuer <kwzh@gnu.org>
parents: 6762
diff changeset
808 (skip-chars-forward " ")
62402
a7e02ef1e3d6 Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents: 52963
diff changeset
809 (let ((msg-num (string-to-number (buffer-substring
a7e02ef1e3d6 Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents: 52963
diff changeset
810 (point)
a7e02ef1e3d6 Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents: 52963
diff changeset
811 (progn (skip-chars-forward "0-9")
a7e02ef1e3d6 Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents: 52963
diff changeset
812 (point))))))
16242
fa3885bdc49c (rmail-summary-next-same-subject): Don't set
Richard M. Stallman <rms@gnu.org>
parents: 15658
diff changeset
813 ;; Always leave `unseen' removed
fa3885bdc49c (rmail-summary-next-same-subject): Don't set
Richard M. Stallman <rms@gnu.org>
parents: 15658
diff changeset
814 ;; if we get out of isearch mode.
fa3885bdc49c (rmail-summary-next-same-subject): Don't set
Richard M. Stallman <rms@gnu.org>
parents: 15658
diff changeset
815 ;; Don't let a subsequent isearch restore that `unseen'.
fa3885bdc49c (rmail-summary-next-same-subject): Don't set
Richard M. Stallman <rms@gnu.org>
parents: 15658
diff changeset
816 (if (not isearch-mode)
fa3885bdc49c (rmail-summary-next-same-subject): Don't set
Richard M. Stallman <rms@gnu.org>
parents: 15658
diff changeset
817 (setq rmail-summary-put-back-unseen nil))
fa3885bdc49c (rmail-summary-next-same-subject): Don't set
Richard M. Stallman <rms@gnu.org>
parents: 15658
diff changeset
818
6961
666f11765323 (rmail-summary-rmail-update): Update rmail buffer even if it isn't displayed.
Karl Heuer <kwzh@gnu.org>
parents: 6762
diff changeset
819 (or (eq rmail-current-message msg-num)
20081
cf2733572fa7 (rmail-summary-rmail-update): When looking for
Karl Heuer <kwzh@gnu.org>
parents: 19570
diff changeset
820 (let ((window (get-buffer-window rmail-view-buffer t))
6961
666f11765323 (rmail-summary-rmail-update): Update rmail buffer even if it isn't displayed.
Karl Heuer <kwzh@gnu.org>
parents: 6762
diff changeset
821 (owin (selected-window)))
16242
fa3885bdc49c (rmail-summary-next-same-subject): Don't set
Richard M. Stallman <rms@gnu.org>
parents: 15658
diff changeset
822 (if isearch-mode
fa3885bdc49c (rmail-summary-next-same-subject): Don't set
Richard M. Stallman <rms@gnu.org>
parents: 15658
diff changeset
823 (save-excursion
fa3885bdc49c (rmail-summary-next-same-subject): Don't set
Richard M. Stallman <rms@gnu.org>
parents: 15658
diff changeset
824 (set-buffer rmail-buffer)
fa3885bdc49c (rmail-summary-next-same-subject): Don't set
Richard M. Stallman <rms@gnu.org>
parents: 15658
diff changeset
825 ;; If we first saw the previous message in this search,
fa3885bdc49c (rmail-summary-next-same-subject): Don't set
Richard M. Stallman <rms@gnu.org>
parents: 15658
diff changeset
826 ;; and we have gone to a different message while searching,
fa3885bdc49c (rmail-summary-next-same-subject): Don't set
Richard M. Stallman <rms@gnu.org>
parents: 15658
diff changeset
827 ;; put back `unseen' on the former one.
22352
312d6d72be14 (rmail-summary-rmail-update): Set message
Karl Heuer <kwzh@gnu.org>
parents: 22203
diff changeset
828 (if rmail-summary-put-back-unseen
22546
8322a6923140 (rmail-summary-rmail-update): Fix indentation.
Karl Heuer <kwzh@gnu.org>
parents: 22352
diff changeset
829 (rmail-set-attribute "unseen" t
8322a6923140 (rmail-summary-rmail-update): Fix indentation.
Karl Heuer <kwzh@gnu.org>
parents: 22352
diff changeset
830 rmail-current-message))
16242
fa3885bdc49c (rmail-summary-next-same-subject): Don't set
Richard M. Stallman <rms@gnu.org>
parents: 15658
diff changeset
831 ;; Arrange to do that later, for the new current message,
fa3885bdc49c (rmail-summary-next-same-subject): Don't set
Richard M. Stallman <rms@gnu.org>
parents: 15658
diff changeset
832 ;; if it still has `unseen'.
fa3885bdc49c (rmail-summary-next-same-subject): Don't set
Richard M. Stallman <rms@gnu.org>
parents: 15658
diff changeset
833 (setq rmail-summary-put-back-unseen
fa3885bdc49c (rmail-summary-next-same-subject): Don't set
Richard M. Stallman <rms@gnu.org>
parents: 15658
diff changeset
834 (rmail-message-labels-p msg-num ", ?\\(unseen\\),")))
fa3885bdc49c (rmail-summary-next-same-subject): Don't set
Richard M. Stallman <rms@gnu.org>
parents: 15658
diff changeset
835 (setq rmail-summary-put-back-unseen nil))
fa3885bdc49c (rmail-summary-next-same-subject): Don't set
Richard M. Stallman <rms@gnu.org>
parents: 15658
diff changeset
836
fa3885bdc49c (rmail-summary-next-same-subject): Don't set
Richard M. Stallman <rms@gnu.org>
parents: 15658
diff changeset
837 ;; Go to the desired message.
6961
666f11765323 (rmail-summary-rmail-update): Update rmail buffer even if it isn't displayed.
Karl Heuer <kwzh@gnu.org>
parents: 6762
diff changeset
838 (setq rmail-current-message msg-num)
16242
fa3885bdc49c (rmail-summary-next-same-subject): Don't set
Richard M. Stallman <rms@gnu.org>
parents: 15658
diff changeset
839
fa3885bdc49c (rmail-summary-next-same-subject): Don't set
Richard M. Stallman <rms@gnu.org>
parents: 15658
diff changeset
840 ;; Update the summary to show the message has been seen.
6961
666f11765323 (rmail-summary-rmail-update): Update rmail buffer even if it isn't displayed.
Karl Heuer <kwzh@gnu.org>
parents: 6762
diff changeset
841 (if (= (following-char) ?-)
666f11765323 (rmail-summary-rmail-update): Update rmail buffer even if it isn't displayed.
Karl Heuer <kwzh@gnu.org>
parents: 6762
diff changeset
842 (progn
666f11765323 (rmail-summary-rmail-update): Update rmail buffer even if it isn't displayed.
Karl Heuer <kwzh@gnu.org>
parents: 6762
diff changeset
843 (delete-char 1)
666f11765323 (rmail-summary-rmail-update): Update rmail buffer even if it isn't displayed.
Karl Heuer <kwzh@gnu.org>
parents: 6762
diff changeset
844 (insert " ")))
16242
fa3885bdc49c (rmail-summary-next-same-subject): Don't set
Richard M. Stallman <rms@gnu.org>
parents: 15658
diff changeset
845
6961
666f11765323 (rmail-summary-rmail-update): Update rmail buffer even if it isn't displayed.
Karl Heuer <kwzh@gnu.org>
parents: 6762
diff changeset
846 (if window
666f11765323 (rmail-summary-rmail-update): Update rmail buffer even if it isn't displayed.
Karl Heuer <kwzh@gnu.org>
parents: 6762
diff changeset
847 ;; Using save-window-excursion would cause the new value
3461
1dec1449324d (rmail-summary-expunge-and-save):
Richard M. Stallman <rms@gnu.org>
parents: 3443
diff changeset
848 ;; of point to get lost.
1dec1449324d (rmail-summary-expunge-and-save):
Richard M. Stallman <rms@gnu.org>
parents: 3443
diff changeset
849 (unwind-protect
1dec1449324d (rmail-summary-expunge-and-save):
Richard M. Stallman <rms@gnu.org>
parents: 3443
diff changeset
850 (progn
1dec1449324d (rmail-summary-expunge-and-save):
Richard M. Stallman <rms@gnu.org>
parents: 3443
diff changeset
851 (select-window window)
9432
a8cd4563a8ae (rmail-summary-rmail-update): Pass new arg to rmail-show-message.
Richard M. Stallman <rms@gnu.org>
parents: 9379
diff changeset
852 (rmail-show-message msg-num t))
6961
666f11765323 (rmail-summary-rmail-update): Update rmail buffer even if it isn't displayed.
Karl Heuer <kwzh@gnu.org>
parents: 6762
diff changeset
853 (select-window owin))
8635
a241401a67ff (rmail-summary-output-menu): New command.
Richard M. Stallman <rms@gnu.org>
parents: 8547
diff changeset
854 (if (buffer-name rmail-buffer)
a241401a67ff (rmail-summary-output-menu): New command.
Richard M. Stallman <rms@gnu.org>
parents: 8547
diff changeset
855 (save-excursion
a241401a67ff (rmail-summary-output-menu): New command.
Richard M. Stallman <rms@gnu.org>
parents: 8547
diff changeset
856 (set-buffer rmail-buffer)
10489
5906e2f35eb9 (rmail-summary-update-highlight): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10142
diff changeset
857 (rmail-show-message msg-num t))))))
5906e2f35eb9 (rmail-summary-update-highlight): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10142
diff changeset
858 (rmail-summary-update-highlight nil)))))
77963
2709877579f2 Alfred M. Szmidt <ams at gnu.org> (tiny change)
Glenn Morris <rgm@gnu.org>
parents: 75347
diff changeset
859
2709877579f2 Alfred M. Szmidt <ams at gnu.org> (tiny change)
Glenn Morris <rgm@gnu.org>
parents: 75347
diff changeset
860 (defun rmail-summary-save-buffer ()
2709877579f2 Alfred M. Szmidt <ams at gnu.org> (tiny change)
Glenn Morris <rgm@gnu.org>
parents: 75347
diff changeset
861 "Save the buffer associated with this RMAIL summary."
2709877579f2 Alfred M. Szmidt <ams at gnu.org> (tiny change)
Glenn Morris <rgm@gnu.org>
parents: 75347
diff changeset
862 (interactive)
2709877579f2 Alfred M. Szmidt <ams at gnu.org> (tiny change)
Glenn Morris <rgm@gnu.org>
parents: 75347
diff changeset
863 (save-window-excursion
2709877579f2 Alfred M. Szmidt <ams at gnu.org> (tiny change)
Glenn Morris <rgm@gnu.org>
parents: 75347
diff changeset
864 (save-excursion
2709877579f2 Alfred M. Szmidt <ams at gnu.org> (tiny change)
Glenn Morris <rgm@gnu.org>
parents: 75347
diff changeset
865 (switch-to-buffer rmail-buffer)
2709877579f2 Alfred M. Szmidt <ams at gnu.org> (tiny change)
Glenn Morris <rgm@gnu.org>
parents: 75347
diff changeset
866 (save-buffer))))
2709877579f2 Alfred M. Szmidt <ams at gnu.org> (tiny change)
Glenn Morris <rgm@gnu.org>
parents: 75347
diff changeset
867
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
868
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
869 (if rmail-summary-mode-map
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
870 nil
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
871 (setq rmail-summary-mode-map (make-keymap))
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
872 (suppress-keymap rmail-summary-mode-map)
19111
e561070ee48c (rmail-summary-mouse-goto-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 17867
diff changeset
873
e561070ee48c (rmail-summary-mouse-goto-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 17867
diff changeset
874 (define-key rmail-summary-mode-map [mouse-2] 'rmail-summary-mouse-goto-message)
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
875 (define-key rmail-summary-mode-map "a" 'rmail-summary-add-label)
15488
fd4273de8c97 (rmail-summary-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15409
diff changeset
876 (define-key rmail-summary-mode-map "b" 'rmail-summary-bury)
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
877 (define-key rmail-summary-mode-map "c" 'rmail-summary-continue)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
878 (define-key rmail-summary-mode-map "d" 'rmail-summary-delete-forward)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
879 (define-key rmail-summary-mode-map "\C-d" 'rmail-summary-delete-backward)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
880 (define-key rmail-summary-mode-map "e" 'rmail-summary-edit-current-message)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
881 (define-key rmail-summary-mode-map "f" 'rmail-summary-forward)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
882 (define-key rmail-summary-mode-map "g" 'rmail-summary-get-new-mail)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
883 (define-key rmail-summary-mode-map "h" 'rmail-summary)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
884 (define-key rmail-summary-mode-map "i" 'rmail-summary-input)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
885 (define-key rmail-summary-mode-map "j" 'rmail-summary-goto-msg)
26809
db949b28b6b4 (rmail-summary-mode-map): Bind RET to rmail-summary-goto-msg.
Gerd Moellmann <gerd@gnu.org>
parents: 24849
diff changeset
886 (define-key rmail-summary-mode-map "\C-m" 'rmail-summary-goto-msg)
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
887 (define-key rmail-summary-mode-map "k" 'rmail-summary-kill-label)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
888 (define-key rmail-summary-mode-map "l" 'rmail-summary-by-labels)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
889 (define-key rmail-summary-mode-map "\e\C-h" 'rmail-summary)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
890 (define-key rmail-summary-mode-map "\e\C-l" 'rmail-summary-by-labels)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
891 (define-key rmail-summary-mode-map "\e\C-r" 'rmail-summary-by-recipients)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
892 (define-key rmail-summary-mode-map "\e\C-s" 'rmail-summary-by-regexp)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
893 (define-key rmail-summary-mode-map "\e\C-t" 'rmail-summary-by-topic)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
894 (define-key rmail-summary-mode-map "m" 'rmail-summary-mail)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
895 (define-key rmail-summary-mode-map "\M-m" 'rmail-summary-retry-failure)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
896 (define-key rmail-summary-mode-map "n" 'rmail-summary-next-msg)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
897 (define-key rmail-summary-mode-map "\en" 'rmail-summary-next-all)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
898 (define-key rmail-summary-mode-map "\e\C-n" 'rmail-summary-next-labeled-message)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
899 (define-key rmail-summary-mode-map "o" 'rmail-summary-output-to-rmail-file)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
900 (define-key rmail-summary-mode-map "\C-o" 'rmail-summary-output)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
901 (define-key rmail-summary-mode-map "p" 'rmail-summary-previous-msg)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
902 (define-key rmail-summary-mode-map "\ep" 'rmail-summary-previous-all)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
903 (define-key rmail-summary-mode-map "\e\C-p" 'rmail-summary-previous-labeled-message)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
904 (define-key rmail-summary-mode-map "q" 'rmail-summary-quit)
22203
481d174f762a (rmail-summary-output-body): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20081
diff changeset
905 (define-key rmail-summary-mode-map "Q" 'rmail-summary-wipe)
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
906 (define-key rmail-summary-mode-map "r" 'rmail-summary-reply)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
907 (define-key rmail-summary-mode-map "s" 'rmail-summary-expunge-and-save)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
908 (define-key rmail-summary-mode-map "\es" 'rmail-summary-search)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
909 (define-key rmail-summary-mode-map "t" 'rmail-summary-toggle-header)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
910 (define-key rmail-summary-mode-map "u" 'rmail-summary-undelete)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
911 (define-key rmail-summary-mode-map "\M-u" 'rmail-summary-undelete-many)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
912 (define-key rmail-summary-mode-map "x" 'rmail-summary-expunge)
22203
481d174f762a (rmail-summary-output-body): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20081
diff changeset
913 (define-key rmail-summary-mode-map "w" 'rmail-summary-output-body)
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
914 (define-key rmail-summary-mode-map "." 'rmail-summary-beginning-of-message)
64929
196e55109345 (rmail-summary-end-of-message): New command to go to the bottom of the mail
Eli Zaretskii <eliz@gnu.org>
parents: 64754
diff changeset
915 (define-key rmail-summary-mode-map "/" 'rmail-summary-end-of-message)
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
916 (define-key rmail-summary-mode-map "<" 'rmail-summary-first-message)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
917 (define-key rmail-summary-mode-map ">" 'rmail-summary-last-message)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
918 (define-key rmail-summary-mode-map " " 'rmail-summary-scroll-msg-up)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
919 (define-key rmail-summary-mode-map "\177" 'rmail-summary-scroll-msg-down)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
920 (define-key rmail-summary-mode-map "?" 'describe-mode)
10663
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
921 (define-key rmail-summary-mode-map "\C-c\C-n" 'rmail-summary-next-same-subject)
b0bf7d40a75d (rmail-summary-next-same-subject): New command.
Richard M. Stallman <rms@gnu.org>
parents: 10489
diff changeset
922 (define-key rmail-summary-mode-map "\C-c\C-p" 'rmail-summary-previous-same-subject)
3879
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
923 (define-key rmail-summary-mode-map "\C-c\C-s\C-d"
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
924 'rmail-summary-sort-by-date)
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
925 (define-key rmail-summary-mode-map "\C-c\C-s\C-s"
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
926 'rmail-summary-sort-by-subject)
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
927 (define-key rmail-summary-mode-map "\C-c\C-s\C-a"
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
928 'rmail-summary-sort-by-author)
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
929 (define-key rmail-summary-mode-map "\C-c\C-s\C-r"
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
930 'rmail-summary-sort-by-recipient)
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
931 (define-key rmail-summary-mode-map "\C-c\C-s\C-c"
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
932 'rmail-summary-sort-by-correspondent)
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
933 (define-key rmail-summary-mode-map "\C-c\C-s\C-l"
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
934 'rmail-summary-sort-by-lines)
6717
2121bf252398 (rmail-summary-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6688
diff changeset
935 (define-key rmail-summary-mode-map "\C-c\C-s\C-k"
37590
003e23c611eb (rmail-summary-sort-by-labels): Renamed
Gerd Moellmann <gerd@gnu.org>
parents: 36746
diff changeset
936 'rmail-summary-sort-by-labels)
77963
2709877579f2 Alfred M. Szmidt <ams at gnu.org> (tiny change)
Glenn Morris <rgm@gnu.org>
parents: 75347
diff changeset
937 (define-key rmail-summary-mode-map "\C-x\C-s" 'rmail-summary-save-buffer)
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
938 )
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
939
3862
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
940 ;;; Menu bar bindings.
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
941
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
942 (define-key rmail-summary-mode-map [menu-bar] (make-sparse-keymap))
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
943
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
944 (define-key rmail-summary-mode-map [menu-bar classify]
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
945 (cons "Classify" (make-sparse-keymap "Classify")))
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
946
8635
a241401a67ff (rmail-summary-output-menu): New command.
Richard M. Stallman <rms@gnu.org>
parents: 8547
diff changeset
947 (define-key rmail-summary-mode-map [menu-bar classify output-menu]
a241401a67ff (rmail-summary-output-menu): New command.
Richard M. Stallman <rms@gnu.org>
parents: 8547
diff changeset
948 '("Output (Rmail Menu)..." . rmail-summary-output-menu))
a241401a67ff (rmail-summary-output-menu): New command.
Richard M. Stallman <rms@gnu.org>
parents: 8547
diff changeset
949
a241401a67ff (rmail-summary-output-menu): New command.
Richard M. Stallman <rms@gnu.org>
parents: 8547
diff changeset
950 (define-key rmail-summary-mode-map [menu-bar classify input-menu]
12033
f7638ab47de7 Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
parents: 11519
diff changeset
951 '("Input Rmail File (menu)..." . rmail-input-menu))
8635
a241401a67ff (rmail-summary-output-menu): New command.
Richard M. Stallman <rms@gnu.org>
parents: 8547
diff changeset
952
8911
3abf3f2ef6cf (rmail-summary-construct-io-menu): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8728
diff changeset
953 (define-key rmail-summary-mode-map [menu-bar classify input-menu]
3abf3f2ef6cf (rmail-summary-construct-io-menu): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8728
diff changeset
954 '(nil))
3abf3f2ef6cf (rmail-summary-construct-io-menu): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8728
diff changeset
955
3abf3f2ef6cf (rmail-summary-construct-io-menu): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8728
diff changeset
956 (define-key rmail-summary-mode-map [menu-bar classify output-menu]
3abf3f2ef6cf (rmail-summary-construct-io-menu): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8728
diff changeset
957 '(nil))
3abf3f2ef6cf (rmail-summary-construct-io-menu): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8728
diff changeset
958
22203
481d174f762a (rmail-summary-output-body): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20081
diff changeset
959 (define-key rmail-summary-mode-map [menu-bar classify output-body]
481d174f762a (rmail-summary-output-body): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20081
diff changeset
960 '("Output (body)..." . rmail-summary-output-body))
481d174f762a (rmail-summary-output-body): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20081
diff changeset
961
3862
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
962 (define-key rmail-summary-mode-map [menu-bar classify output-inbox]
8422
bfdf6de7fddb (rmail-summary-mode-map): Add `...' where appropriate.
Richard M. Stallman <rms@gnu.org>
parents: 8421
diff changeset
963 '("Output (inbox)..." . rmail-summary-output))
3862
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
964
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
965 (define-key rmail-summary-mode-map [menu-bar classify output]
8422
bfdf6de7fddb (rmail-summary-mode-map): Add `...' where appropriate.
Richard M. Stallman <rms@gnu.org>
parents: 8421
diff changeset
966 '("Output (Rmail)..." . rmail-summary-output-to-rmail-file))
3862
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
967
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
968 (define-key rmail-summary-mode-map [menu-bar classify kill-label]
8422
bfdf6de7fddb (rmail-summary-mode-map): Add `...' where appropriate.
Richard M. Stallman <rms@gnu.org>
parents: 8421
diff changeset
969 '("Kill Label..." . rmail-summary-kill-label))
3862
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
970
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
971 (define-key rmail-summary-mode-map [menu-bar classify add-label]
8422
bfdf6de7fddb (rmail-summary-mode-map): Add `...' where appropriate.
Richard M. Stallman <rms@gnu.org>
parents: 8421
diff changeset
972 '("Add Label..." . rmail-summary-add-label))
3862
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
973
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
974 (define-key rmail-summary-mode-map [menu-bar summary]
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
975 (cons "Summary" (make-sparse-keymap "Summary")))
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
976
15509
015c38409ce5 (rmail-summary-mode-map): Add rmail-summary-by-senders.
Richard M. Stallman <rms@gnu.org>
parents: 15488
diff changeset
977 (define-key rmail-summary-mode-map [menu-bar summary senders]
015c38409ce5 (rmail-summary-mode-map): Add rmail-summary-by-senders.
Richard M. Stallman <rms@gnu.org>
parents: 15488
diff changeset
978 '("By Senders..." . rmail-summary-by-senders))
015c38409ce5 (rmail-summary-mode-map): Add rmail-summary-by-senders.
Richard M. Stallman <rms@gnu.org>
parents: 15488
diff changeset
979
3862
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
980 (define-key rmail-summary-mode-map [menu-bar summary labels]
8422
bfdf6de7fddb (rmail-summary-mode-map): Add `...' where appropriate.
Richard M. Stallman <rms@gnu.org>
parents: 8421
diff changeset
981 '("By Labels..." . rmail-summary-by-labels))
3862
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
982
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
983 (define-key rmail-summary-mode-map [menu-bar summary recipients]
8422
bfdf6de7fddb (rmail-summary-mode-map): Add `...' where appropriate.
Richard M. Stallman <rms@gnu.org>
parents: 8421
diff changeset
984 '("By Recipients..." . rmail-summary-by-recipients))
3862
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
985
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
986 (define-key rmail-summary-mode-map [menu-bar summary topic]
8422
bfdf6de7fddb (rmail-summary-mode-map): Add `...' where appropriate.
Richard M. Stallman <rms@gnu.org>
parents: 8421
diff changeset
987 '("By Topic..." . rmail-summary-by-topic))
3862
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
988
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
989 (define-key rmail-summary-mode-map [menu-bar summary regexp]
8422
bfdf6de7fddb (rmail-summary-mode-map): Add `...' where appropriate.
Richard M. Stallman <rms@gnu.org>
parents: 8421
diff changeset
990 '("By Regexp..." . rmail-summary-by-regexp))
3862
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
991
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
992 (define-key rmail-summary-mode-map [menu-bar summary all]
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
993 '("All" . rmail-summary))
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
994
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
995 (define-key rmail-summary-mode-map [menu-bar mail]
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
996 (cons "Mail" (make-sparse-keymap "Mail")))
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
997
8419
711098a43695 (rmail-summary-mode-map): Fix the Get New Mail entry.
Richard M. Stallman <rms@gnu.org>
parents: 8392
diff changeset
998 (define-key rmail-summary-mode-map [menu-bar mail rmail-summary-get-new-mail]
8392
f0e1008534c4 (rmail-summary-mode-map): Move new Re-send menu item to right place.
Richard M. Stallman <rms@gnu.org>
parents: 8385
diff changeset
999 '("Get New Mail" . rmail-summary-get-new-mail))
f0e1008534c4 (rmail-summary-mode-map): Move new Re-send menu item to right place.
Richard M. Stallman <rms@gnu.org>
parents: 8385
diff changeset
1000
8421
6f13961ee63e (rmail-summary-mode-map): Fix typo.
Richard M. Stallman <rms@gnu.org>
parents: 8419
diff changeset
1001 (define-key rmail-summary-mode-map [menu-bar mail lambda]
8392
f0e1008534c4 (rmail-summary-mode-map): Move new Re-send menu item to right place.
Richard M. Stallman <rms@gnu.org>
parents: 8385
diff changeset
1002 '("----"))
8379
466112a5ae5a (rmail-summary-mode-map): Add Re-send menu item.
Richard M. Stallman <rms@gnu.org>
parents: 7421
diff changeset
1003
3862
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1004 (define-key rmail-summary-mode-map [menu-bar mail continue]
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1005 '("Continue" . rmail-summary-continue))
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1006
8392
f0e1008534c4 (rmail-summary-mode-map): Move new Re-send menu item to right place.
Richard M. Stallman <rms@gnu.org>
parents: 8385
diff changeset
1007 (define-key rmail-summary-mode-map [menu-bar mail resend]
9448
99ec41e9cb2e (rmail-summary-resend): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9432
diff changeset
1008 '("Re-send..." . rmail-summary-resend))
8392
f0e1008534c4 (rmail-summary-mode-map): Move new Re-send menu item to right place.
Richard M. Stallman <rms@gnu.org>
parents: 8385
diff changeset
1009
3862
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1010 (define-key rmail-summary-mode-map [menu-bar mail forward]
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1011 '("Forward" . rmail-summary-forward))
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1012
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1013 (define-key rmail-summary-mode-map [menu-bar mail retry]
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1014 '("Retry" . rmail-summary-retry-failure))
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1015
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1016 (define-key rmail-summary-mode-map [menu-bar mail reply]
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1017 '("Reply" . rmail-summary-reply))
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1018
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1019 (define-key rmail-summary-mode-map [menu-bar mail mail]
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1020 '("Mail" . rmail-summary-mail))
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1021
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1022 (define-key rmail-summary-mode-map [menu-bar delete]
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1023 (cons "Delete" (make-sparse-keymap "Delete")))
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1024
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1025 (define-key rmail-summary-mode-map [menu-bar delete expunge/save]
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1026 '("Expunge/Save" . rmail-summary-expunge-and-save))
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1027
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1028 (define-key rmail-summary-mode-map [menu-bar delete expunge]
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1029 '("Expunge" . rmail-summary-expunge))
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1030
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1031 (define-key rmail-summary-mode-map [menu-bar delete undelete]
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1032 '("Undelete" . rmail-summary-undelete))
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1033
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1034 (define-key rmail-summary-mode-map [menu-bar delete delete]
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1035 '("Delete" . rmail-summary-delete-forward))
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1036
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1037 (define-key rmail-summary-mode-map [menu-bar move]
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1038 (cons "Move" (make-sparse-keymap "Move")))
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1039
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1040 (define-key rmail-summary-mode-map [menu-bar move search-back]
8422
bfdf6de7fddb (rmail-summary-mode-map): Add `...' where appropriate.
Richard M. Stallman <rms@gnu.org>
parents: 8421
diff changeset
1041 '("Search Back..." . rmail-summary-search-backward))
3862
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1042
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1043 (define-key rmail-summary-mode-map [menu-bar move search]
8422
bfdf6de7fddb (rmail-summary-mode-map): Add `...' where appropriate.
Richard M. Stallman <rms@gnu.org>
parents: 8421
diff changeset
1044 '("Search..." . rmail-summary-search))
3862
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1045
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1046 (define-key rmail-summary-mode-map [menu-bar move previous]
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1047 '("Previous Nondeleted" . rmail-summary-previous-msg))
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1048
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1049 (define-key rmail-summary-mode-map [menu-bar move next]
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1050 '("Next Nondeleted" . rmail-summary-next-msg))
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1051
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1052 (define-key rmail-summary-mode-map [menu-bar move last]
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1053 '("Last" . rmail-summary-last-message))
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1054
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1055 (define-key rmail-summary-mode-map [menu-bar move first]
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1056 '("First" . rmail-summary-first-message))
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1057
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1058 (define-key rmail-summary-mode-map [menu-bar move previous]
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1059 '("Previous" . rmail-summary-previous-all))
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1060
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1061 (define-key rmail-summary-mode-map [menu-bar move next]
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1062 '("Next" . rmail-summary-next-all))
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1063
19111
e561070ee48c (rmail-summary-mouse-goto-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 17867
diff changeset
1064 (defun rmail-summary-mouse-goto-message (event)
e561070ee48c (rmail-summary-mouse-goto-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 17867
diff changeset
1065 "Select the message whose summary line you click on."
e561070ee48c (rmail-summary-mouse-goto-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 17867
diff changeset
1066 (interactive "@e")
e561070ee48c (rmail-summary-mouse-goto-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 17867
diff changeset
1067 (goto-char (posn-point (event-end event)))
e561070ee48c (rmail-summary-mouse-goto-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 17867
diff changeset
1068 (rmail-summary-goto-msg))
14293
87b4bd8fea26 (rmail-make-basic-summary-line): Include msg line number.
Karl Heuer <kwzh@gnu.org>
parents: 14169
diff changeset
1069
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1070 (defun rmail-summary-goto-msg (&optional n nowarn skip-rmail)
19111
e561070ee48c (rmail-summary-mouse-goto-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 17867
diff changeset
1071 "Go to message N in the summary buffer and the Rmail buffer.
e561070ee48c (rmail-summary-mouse-goto-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 17867
diff changeset
1072 If N is nil, use the message corresponding to point in the summary
e561070ee48c (rmail-summary-mouse-goto-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 17867
diff changeset
1073 and move to that message in the Rmail buffer.
e561070ee48c (rmail-summary-mouse-goto-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 17867
diff changeset
1074
e561070ee48c (rmail-summary-mouse-goto-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 17867
diff changeset
1075 If NOWARN, don't say anything if N is out of range.
e561070ee48c (rmail-summary-mouse-goto-message): New function.
Richard M. Stallman <rms@gnu.org>
parents: 17867
diff changeset
1076 If SKIP-RMAIL, don't do anything to the Rmail buffer."
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1077 (interactive "P")
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1078 (if (consp n) (setq n (prefix-numeric-value n)))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1079 (if (eobp) (forward-line -1))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1080 (beginning-of-line)
9352
f10a1492ecfa (rmail-summary-goto-msg): Get rmail-total-messages from the rmail buffer.
Richard M. Stallman <rms@gnu.org>
parents: 9151
diff changeset
1081 (let* ((obuf (current-buffer))
f10a1492ecfa (rmail-summary-goto-msg): Get rmail-total-messages from the rmail buffer.
Richard M. Stallman <rms@gnu.org>
parents: 9151
diff changeset
1082 (buf rmail-buffer)
f10a1492ecfa (rmail-summary-goto-msg): Get rmail-total-messages from the rmail buffer.
Richard M. Stallman <rms@gnu.org>
parents: 9151
diff changeset
1083 (cur (point))
f10a1492ecfa (rmail-summary-goto-msg): Get rmail-total-messages from the rmail buffer.
Richard M. Stallman <rms@gnu.org>
parents: 9151
diff changeset
1084 message-not-found
62402
a7e02ef1e3d6 Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents: 52963
diff changeset
1085 (curmsg (string-to-number
9352
f10a1492ecfa (rmail-summary-goto-msg): Get rmail-total-messages from the rmail buffer.
Richard M. Stallman <rms@gnu.org>
parents: 9151
diff changeset
1086 (buffer-substring (point)
39567
49445c8e650d (rmail-make-summary-line)
Gerd Moellmann <gerd@gnu.org>
parents: 38412
diff changeset
1087 (min (point-max) (+ 6 (point))))))
9352
f10a1492ecfa (rmail-summary-goto-msg): Get rmail-total-messages from the rmail buffer.
Richard M. Stallman <rms@gnu.org>
parents: 9151
diff changeset
1088 (total (save-excursion (set-buffer buf) rmail-total-messages)))
6422
401da3d11995 (rmail-summary-goto-msg): Highlight message number of current message.
Richard M. Stallman <rms@gnu.org>
parents: 5861
diff changeset
1089 ;; If message number N was specified, find that message's line
401da3d11995 (rmail-summary-goto-msg): Highlight message number of current message.
Richard M. Stallman <rms@gnu.org>
parents: 5861
diff changeset
1090 ;; or set message-not-found.
401da3d11995 (rmail-summary-goto-msg): Highlight message number of current message.
Richard M. Stallman <rms@gnu.org>
parents: 5861
diff changeset
1091 ;; If N wasn't specified or that message can't be found.
401da3d11995 (rmail-summary-goto-msg): Highlight message number of current message.
Richard M. Stallman <rms@gnu.org>
parents: 5861
diff changeset
1092 ;; set N by default.
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1093 (if (not n)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1094 (setq n curmsg)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1095 (if (< n 1)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1096 (progn (message "No preceding message")
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1097 (setq n 1)))
52963
c4870e121489 (rmail-summary-goto-msg): Don't call itself
Eli Zaretskii <eliz@gnu.org>
parents: 52683
diff changeset
1098 (if (and (> n total)
c4870e121489 (rmail-summary-goto-msg): Don't call itself
Eli Zaretskii <eliz@gnu.org>
parents: 52683
diff changeset
1099 (> total 0))
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1100 (progn (message "No following message")
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1101 (goto-char (point-max))
14293
87b4bd8fea26 (rmail-make-basic-summary-line): Include msg line number.
Karl Heuer <kwzh@gnu.org>
parents: 14169
diff changeset
1102 (rmail-summary-goto-msg nil nowarn skip-rmail)))
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1103 (goto-char (point-min))
39567
49445c8e650d (rmail-make-summary-line)
Gerd Moellmann <gerd@gnu.org>
parents: 38412
diff changeset
1104 (if (not (re-search-forward (format "^%5d[^0-9]" n) nil t))
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1105 (progn (or nowarn (message "Message %d not found" n))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1106 (setq n curmsg)
6422
401da3d11995 (rmail-summary-goto-msg): Highlight message number of current message.
Richard M. Stallman <rms@gnu.org>
parents: 5861
diff changeset
1107 (setq message-not-found t)
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1108 (goto-char cur))))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1109 (beginning-of-line)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1110 (skip-chars-forward " ")
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1111 (skip-chars-forward "0-9")
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1112 (save-excursion (if (= (following-char) ?-)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1113 (let ((buffer-read-only nil))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1114 (delete-char 1)
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1115 (insert " "))))
10489
5906e2f35eb9 (rmail-summary-update-highlight): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10142
diff changeset
1116 (rmail-summary-update-highlight message-not-found)
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1117 (beginning-of-line)
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1118 (if skip-rmail
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1119 nil
5275
c2a5a99d89e8 (rmail-summary-goto-msg): Use unwind-protect to go
Richard M. Stallman <rms@gnu.org>
parents: 5121
diff changeset
1120 (let ((selwin (selected-window)))
c2a5a99d89e8 (rmail-summary-goto-msg): Use unwind-protect to go
Richard M. Stallman <rms@gnu.org>
parents: 5121
diff changeset
1121 (unwind-protect
c2a5a99d89e8 (rmail-summary-goto-msg): Use unwind-protect to go
Richard M. Stallman <rms@gnu.org>
parents: 5121
diff changeset
1122 (progn (pop-to-buffer buf)
c2a5a99d89e8 (rmail-summary-goto-msg): Use unwind-protect to go
Richard M. Stallman <rms@gnu.org>
parents: 5121
diff changeset
1123 (rmail-show-message n))
8728
b30c35c8e7ed (rmail-summary-goto-msg): Preserve the current buffer.
Richard M. Stallman <rms@gnu.org>
parents: 8635
diff changeset
1124 (select-window selwin)
b30c35c8e7ed (rmail-summary-goto-msg): Preserve the current buffer.
Richard M. Stallman <rms@gnu.org>
parents: 8635
diff changeset
1125 ;; The actions above can alter the current buffer. Preserve it.
b30c35c8e7ed (rmail-summary-goto-msg): Preserve the current buffer.
Richard M. Stallman <rms@gnu.org>
parents: 8635
diff changeset
1126 (set-buffer obuf))))))
10489
5906e2f35eb9 (rmail-summary-update-highlight): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10142
diff changeset
1127
5906e2f35eb9 (rmail-summary-update-highlight): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10142
diff changeset
1128 ;; Update the highlighted line in an rmail summary buffer.
5906e2f35eb9 (rmail-summary-update-highlight): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10142
diff changeset
1129 ;; That should be current. We highlight the line point is on.
5906e2f35eb9 (rmail-summary-update-highlight): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10142
diff changeset
1130 ;; If NOT-FOUND is non-nil, we turn off highlighting.
5906e2f35eb9 (rmail-summary-update-highlight): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10142
diff changeset
1131 (defun rmail-summary-update-highlight (not-found)
5906e2f35eb9 (rmail-summary-update-highlight): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10142
diff changeset
1132 ;; Make sure we have an overlay to use.
5906e2f35eb9 (rmail-summary-update-highlight): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10142
diff changeset
1133 (or rmail-summary-overlay
5906e2f35eb9 (rmail-summary-update-highlight): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10142
diff changeset
1134 (progn
5906e2f35eb9 (rmail-summary-update-highlight): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10142
diff changeset
1135 (make-local-variable 'rmail-summary-overlay)
5906e2f35eb9 (rmail-summary-update-highlight): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10142
diff changeset
1136 (setq rmail-summary-overlay (make-overlay (point) (point)))))
5906e2f35eb9 (rmail-summary-update-highlight): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10142
diff changeset
1137 ;; If this message is in the summary, use the overlay to highlight it.
5906e2f35eb9 (rmail-summary-update-highlight): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10142
diff changeset
1138 ;; Otherwise, don't highlight anything.
5906e2f35eb9 (rmail-summary-update-highlight): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10142
diff changeset
1139 (if not-found
5906e2f35eb9 (rmail-summary-update-highlight): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10142
diff changeset
1140 (overlay-put rmail-summary-overlay 'face nil)
5906e2f35eb9 (rmail-summary-update-highlight): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10142
diff changeset
1141 (move-overlay rmail-summary-overlay
5906e2f35eb9 (rmail-summary-update-highlight): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10142
diff changeset
1142 (save-excursion (beginning-of-line)
5906e2f35eb9 (rmail-summary-update-highlight): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10142
diff changeset
1143 (skip-chars-forward " ")
5906e2f35eb9 (rmail-summary-update-highlight): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10142
diff changeset
1144 (point))
5906e2f35eb9 (rmail-summary-update-highlight): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10142
diff changeset
1145 (save-excursion (end-of-line) (point)))
5906e2f35eb9 (rmail-summary-update-highlight): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10142
diff changeset
1146 (overlay-put rmail-summary-overlay 'face 'highlight)))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1147
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1148 (defun rmail-summary-scroll-msg-up (&optional dist)
10030
f0264fb75509 (rmail-summary-scroll-msg-up): If at end of message,
Richard M. Stallman <rms@gnu.org>
parents: 9545
diff changeset
1149 "Scroll the Rmail window forward.
f0264fb75509 (rmail-summary-scroll-msg-up): If at end of message,
Richard M. Stallman <rms@gnu.org>
parents: 9545
diff changeset
1150 If the Rmail window is displaying the end of a message,
f0264fb75509 (rmail-summary-scroll-msg-up): If at end of message,
Richard M. Stallman <rms@gnu.org>
parents: 9545
diff changeset
1151 advance to the next message."
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1152 (interactive "P")
10030
f0264fb75509 (rmail-summary-scroll-msg-up): If at end of message,
Richard M. Stallman <rms@gnu.org>
parents: 9545
diff changeset
1153 (if (eq dist '-)
f0264fb75509 (rmail-summary-scroll-msg-up): If at end of message,
Richard M. Stallman <rms@gnu.org>
parents: 9545
diff changeset
1154 (rmail-summary-scroll-msg-down nil)
17096
4a2d9b3990e3 (rmail-new-summary): Setup rmail-view-buffer.
Kenichi Handa <handa@m17n.org>
parents: 16676
diff changeset
1155 (let ((rmail-buffer-window (get-buffer-window rmail-view-buffer)))
10030
f0264fb75509 (rmail-summary-scroll-msg-up): If at end of message,
Richard M. Stallman <rms@gnu.org>
parents: 9545
diff changeset
1156 (if rmail-buffer-window
f0264fb75509 (rmail-summary-scroll-msg-up): If at end of message,
Richard M. Stallman <rms@gnu.org>
parents: 9545
diff changeset
1157 (if (let ((rmail-summary-window (selected-window)))
f0264fb75509 (rmail-summary-scroll-msg-up): If at end of message,
Richard M. Stallman <rms@gnu.org>
parents: 9545
diff changeset
1158 (select-window rmail-buffer-window)
f0264fb75509 (rmail-summary-scroll-msg-up): If at end of message,
Richard M. Stallman <rms@gnu.org>
parents: 9545
diff changeset
1159 (prog1
f0264fb75509 (rmail-summary-scroll-msg-up): If at end of message,
Richard M. Stallman <rms@gnu.org>
parents: 9545
diff changeset
1160 ;; Is EOB visible in the buffer?
f0264fb75509 (rmail-summary-scroll-msg-up): If at end of message,
Richard M. Stallman <rms@gnu.org>
parents: 9545
diff changeset
1161 (save-excursion
f0264fb75509 (rmail-summary-scroll-msg-up): If at end of message,
Richard M. Stallman <rms@gnu.org>
parents: 9545
diff changeset
1162 (let ((ht (window-height (selected-window))))
f0264fb75509 (rmail-summary-scroll-msg-up): If at end of message,
Richard M. Stallman <rms@gnu.org>
parents: 9545
diff changeset
1163 (move-to-window-line (- ht 2))
f0264fb75509 (rmail-summary-scroll-msg-up): If at end of message,
Richard M. Stallman <rms@gnu.org>
parents: 9545
diff changeset
1164 (end-of-line)
f0264fb75509 (rmail-summary-scroll-msg-up): If at end of message,
Richard M. Stallman <rms@gnu.org>
parents: 9545
diff changeset
1165 (eobp)))
f0264fb75509 (rmail-summary-scroll-msg-up): If at end of message,
Richard M. Stallman <rms@gnu.org>
parents: 9545
diff changeset
1166 (select-window rmail-summary-window)))
14940
9dceb7afbb68 (rmail-summary-scroll-between-messages): New var.
Richard M. Stallman <rms@gnu.org>
parents: 14786
diff changeset
1167 (if (not rmail-summary-scroll-between-messages)
9dceb7afbb68 (rmail-summary-scroll-between-messages): New var.
Richard M. Stallman <rms@gnu.org>
parents: 14786
diff changeset
1168 (error "End of buffer")
9dceb7afbb68 (rmail-summary-scroll-between-messages): New var.
Richard M. Stallman <rms@gnu.org>
parents: 14786
diff changeset
1169 (rmail-summary-next-msg (or dist 1)))
17096
4a2d9b3990e3 (rmail-new-summary): Setup rmail-view-buffer.
Kenichi Handa <handa@m17n.org>
parents: 16676
diff changeset
1170 (let ((other-window-scroll-buffer rmail-view-buffer))
10030
f0264fb75509 (rmail-summary-scroll-msg-up): If at end of message,
Richard M. Stallman <rms@gnu.org>
parents: 9545
diff changeset
1171 (scroll-other-window dist)))
16676
82e54a854639 (rmail-summary-beginning-of-message):
Richard M. Stallman <rms@gnu.org>
parents: 16389
diff changeset
1172 ;; If it isn't visible at all, show the beginning.
82e54a854639 (rmail-summary-beginning-of-message):
Richard M. Stallman <rms@gnu.org>
parents: 16389
diff changeset
1173 (rmail-summary-beginning-of-message)))))
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1174
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1175 (defun rmail-summary-scroll-msg-down (&optional dist)
10030
f0264fb75509 (rmail-summary-scroll-msg-up): If at end of message,
Richard M. Stallman <rms@gnu.org>
parents: 9545
diff changeset
1176 "Scroll the Rmail window backward.
16676
82e54a854639 (rmail-summary-beginning-of-message):
Richard M. Stallman <rms@gnu.org>
parents: 16389
diff changeset
1177 If the Rmail window is now displaying the beginning of a message,
82e54a854639 (rmail-summary-beginning-of-message):
Richard M. Stallman <rms@gnu.org>
parents: 16389
diff changeset
1178 move to the previous message."
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1179 (interactive "P")
10030
f0264fb75509 (rmail-summary-scroll-msg-up): If at end of message,
Richard M. Stallman <rms@gnu.org>
parents: 9545
diff changeset
1180 (if (eq dist '-)
f0264fb75509 (rmail-summary-scroll-msg-up): If at end of message,
Richard M. Stallman <rms@gnu.org>
parents: 9545
diff changeset
1181 (rmail-summary-scroll-msg-up nil)
37614
17db314acfc2 (rmail-message-subject-p): Process the result
Gerd Moellmann <gerd@gnu.org>
parents: 37590
diff changeset
1182 (let ((rmail-buffer-window (get-buffer-window rmail-view-buffer)))
10030
f0264fb75509 (rmail-summary-scroll-msg-up): If at end of message,
Richard M. Stallman <rms@gnu.org>
parents: 9545
diff changeset
1183 (if rmail-buffer-window
f0264fb75509 (rmail-summary-scroll-msg-up): If at end of message,
Richard M. Stallman <rms@gnu.org>
parents: 9545
diff changeset
1184 (if (let ((rmail-summary-window (selected-window)))
f0264fb75509 (rmail-summary-scroll-msg-up): If at end of message,
Richard M. Stallman <rms@gnu.org>
parents: 9545
diff changeset
1185 (select-window rmail-buffer-window)
f0264fb75509 (rmail-summary-scroll-msg-up): If at end of message,
Richard M. Stallman <rms@gnu.org>
parents: 9545
diff changeset
1186 (prog1
f0264fb75509 (rmail-summary-scroll-msg-up): If at end of message,
Richard M. Stallman <rms@gnu.org>
parents: 9545
diff changeset
1187 ;; Is BOB visible in the buffer?
f0264fb75509 (rmail-summary-scroll-msg-up): If at end of message,
Richard M. Stallman <rms@gnu.org>
parents: 9545
diff changeset
1188 (save-excursion
f0264fb75509 (rmail-summary-scroll-msg-up): If at end of message,
Richard M. Stallman <rms@gnu.org>
parents: 9545
diff changeset
1189 (move-to-window-line 0)
f0264fb75509 (rmail-summary-scroll-msg-up): If at end of message,
Richard M. Stallman <rms@gnu.org>
parents: 9545
diff changeset
1190 (beginning-of-line)
f0264fb75509 (rmail-summary-scroll-msg-up): If at end of message,
Richard M. Stallman <rms@gnu.org>
parents: 9545
diff changeset
1191 (bobp))
f0264fb75509 (rmail-summary-scroll-msg-up): If at end of message,
Richard M. Stallman <rms@gnu.org>
parents: 9545
diff changeset
1192 (select-window rmail-summary-window)))
14940
9dceb7afbb68 (rmail-summary-scroll-between-messages): New var.
Richard M. Stallman <rms@gnu.org>
parents: 14786
diff changeset
1193 (if (not rmail-summary-scroll-between-messages)
9dceb7afbb68 (rmail-summary-scroll-between-messages): New var.
Richard M. Stallman <rms@gnu.org>
parents: 14786
diff changeset
1194 (error "Beginning of buffer")
9dceb7afbb68 (rmail-summary-scroll-between-messages): New var.
Richard M. Stallman <rms@gnu.org>
parents: 14786
diff changeset
1195 (rmail-summary-previous-msg (or dist 1)))
37614
17db314acfc2 (rmail-message-subject-p): Process the result
Gerd Moellmann <gerd@gnu.org>
parents: 37590
diff changeset
1196 (let ((other-window-scroll-buffer rmail-view-buffer))
10030
f0264fb75509 (rmail-summary-scroll-msg-up): If at end of message,
Richard M. Stallman <rms@gnu.org>
parents: 9545
diff changeset
1197 (scroll-other-window-down dist)))
16676
82e54a854639 (rmail-summary-beginning-of-message):
Richard M. Stallman <rms@gnu.org>
parents: 16389
diff changeset
1198 ;; If it isn't visible at all, show the beginning.
82e54a854639 (rmail-summary-beginning-of-message):
Richard M. Stallman <rms@gnu.org>
parents: 16389
diff changeset
1199 (rmail-summary-beginning-of-message)))))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1200
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1201 (defun rmail-summary-beginning-of-message ()
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1202 "Show current message from the beginning."
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1203 (interactive)
64929
196e55109345 (rmail-summary-end-of-message): New command to go to the bottom of the mail
Eli Zaretskii <eliz@gnu.org>
parents: 64754
diff changeset
1204 (rmail-summary-show-message 'BEG))
196e55109345 (rmail-summary-end-of-message): New command to go to the bottom of the mail
Eli Zaretskii <eliz@gnu.org>
parents: 64754
diff changeset
1205
196e55109345 (rmail-summary-end-of-message): New command to go to the bottom of the mail
Eli Zaretskii <eliz@gnu.org>
parents: 64754
diff changeset
1206 (defun rmail-summary-end-of-message ()
196e55109345 (rmail-summary-end-of-message): New command to go to the bottom of the mail
Eli Zaretskii <eliz@gnu.org>
parents: 64754
diff changeset
1207 "Show bottom of current message."
196e55109345 (rmail-summary-end-of-message): New command to go to the bottom of the mail
Eli Zaretskii <eliz@gnu.org>
parents: 64754
diff changeset
1208 (interactive)
196e55109345 (rmail-summary-end-of-message): New command to go to the bottom of the mail
Eli Zaretskii <eliz@gnu.org>
parents: 64754
diff changeset
1209 (rmail-summary-show-message 'END))
196e55109345 (rmail-summary-end-of-message): New command to go to the bottom of the mail
Eli Zaretskii <eliz@gnu.org>
parents: 64754
diff changeset
1210
196e55109345 (rmail-summary-end-of-message): New command to go to the bottom of the mail
Eli Zaretskii <eliz@gnu.org>
parents: 64754
diff changeset
1211 (defun rmail-summary-show-message (where)
196e55109345 (rmail-summary-end-of-message): New command to go to the bottom of the mail
Eli Zaretskii <eliz@gnu.org>
parents: 64754
diff changeset
1212 "Show current mail message.
196e55109345 (rmail-summary-end-of-message): New command to go to the bottom of the mail
Eli Zaretskii <eliz@gnu.org>
parents: 64754
diff changeset
1213 Position it according to WHERE which can be BEG or END"
16676
82e54a854639 (rmail-summary-beginning-of-message):
Richard M. Stallman <rms@gnu.org>
parents: 16389
diff changeset
1214 (if (and (one-window-p) (not pop-up-frames))
82e54a854639 (rmail-summary-beginning-of-message):
Richard M. Stallman <rms@gnu.org>
parents: 16389
diff changeset
1215 ;; If there is just one window, put the summary on the top.
37614
17db314acfc2 (rmail-message-subject-p): Process the result
Gerd Moellmann <gerd@gnu.org>
parents: 37590
diff changeset
1216 (let ((buffer rmail-view-buffer))
16676
82e54a854639 (rmail-summary-beginning-of-message):
Richard M. Stallman <rms@gnu.org>
parents: 16389
diff changeset
1217 (split-window (selected-window) rmail-summary-window-size)
82e54a854639 (rmail-summary-beginning-of-message):
Richard M. Stallman <rms@gnu.org>
parents: 16389
diff changeset
1218 (select-window (frame-first-window))
37614
17db314acfc2 (rmail-message-subject-p): Process the result
Gerd Moellmann <gerd@gnu.org>
parents: 37590
diff changeset
1219 (pop-to-buffer rmail-view-buffer)
16676
82e54a854639 (rmail-summary-beginning-of-message):
Richard M. Stallman <rms@gnu.org>
parents: 16389
diff changeset
1220 ;; If pop-to-buffer did not use that window, delete that
82e54a854639 (rmail-summary-beginning-of-message):
Richard M. Stallman <rms@gnu.org>
parents: 16389
diff changeset
1221 ;; window. (This can happen if it uses another frame.)
82e54a854639 (rmail-summary-beginning-of-message):
Richard M. Stallman <rms@gnu.org>
parents: 16389
diff changeset
1222 (or (eq buffer (window-buffer (next-window (frame-first-window))))
82e54a854639 (rmail-summary-beginning-of-message):
Richard M. Stallman <rms@gnu.org>
parents: 16389
diff changeset
1223 (delete-other-windows)))
37614
17db314acfc2 (rmail-message-subject-p): Process the result
Gerd Moellmann <gerd@gnu.org>
parents: 37590
diff changeset
1224 (pop-to-buffer rmail-view-buffer))
64929
196e55109345 (rmail-summary-end-of-message): New command to go to the bottom of the mail
Eli Zaretskii <eliz@gnu.org>
parents: 64754
diff changeset
1225 (cond
196e55109345 (rmail-summary-end-of-message): New command to go to the bottom of the mail
Eli Zaretskii <eliz@gnu.org>
parents: 64754
diff changeset
1226 ((eq where 'BEG)
196e55109345 (rmail-summary-end-of-message): New command to go to the bottom of the mail
Eli Zaretskii <eliz@gnu.org>
parents: 64754
diff changeset
1227 (goto-char (point-min))
196e55109345 (rmail-summary-end-of-message): New command to go to the bottom of the mail
Eli Zaretskii <eliz@gnu.org>
parents: 64754
diff changeset
1228 (search-forward "\n\n"))
196e55109345 (rmail-summary-end-of-message): New command to go to the bottom of the mail
Eli Zaretskii <eliz@gnu.org>
parents: 64754
diff changeset
1229 ((eq where 'END)
196e55109345 (rmail-summary-end-of-message): New command to go to the bottom of the mail
Eli Zaretskii <eliz@gnu.org>
parents: 64754
diff changeset
1230 (goto-char (point-max))
196e55109345 (rmail-summary-end-of-message): New command to go to the bottom of the mail
Eli Zaretskii <eliz@gnu.org>
parents: 64754
diff changeset
1231 (recenter (1- (window-height))))
196e55109345 (rmail-summary-end-of-message): New command to go to the bottom of the mail
Eli Zaretskii <eliz@gnu.org>
parents: 64754
diff changeset
1232 )
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1233 (pop-to-buffer rmail-summary-buffer))
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1234
15488
fd4273de8c97 (rmail-summary-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15409
diff changeset
1235 (defun rmail-summary-bury ()
fd4273de8c97 (rmail-summary-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15409
diff changeset
1236 "Bury the Rmail buffer and the Rmail summary buffer."
fd4273de8c97 (rmail-summary-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15409
diff changeset
1237 (interactive)
fd4273de8c97 (rmail-summary-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15409
diff changeset
1238 (let ((buffer-to-bury (current-buffer)))
fd4273de8c97 (rmail-summary-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15409
diff changeset
1239 (let (window)
fd4273de8c97 (rmail-summary-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15409
diff changeset
1240 (while (setq window (get-buffer-window rmail-buffer))
fd4273de8c97 (rmail-summary-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15409
diff changeset
1241 (set-window-buffer window (other-buffer rmail-buffer)))
fd4273de8c97 (rmail-summary-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15409
diff changeset
1242 (bury-buffer rmail-buffer))
fd4273de8c97 (rmail-summary-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15409
diff changeset
1243 (switch-to-buffer (other-buffer buffer-to-bury))
fd4273de8c97 (rmail-summary-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15409
diff changeset
1244 (bury-buffer buffer-to-bury)))
fd4273de8c97 (rmail-summary-bury): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15409
diff changeset
1245
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1246 (defun rmail-summary-quit ()
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1247 "Quit out of Rmail and Rmail summary."
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1248 (interactive)
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1249 (rmail-summary-wipe)
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1250 (rmail-quit))
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1251
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1252 (defun rmail-summary-wipe ()
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1253 "Kill and wipe away Rmail summary, remaining within Rmail."
130
ad8219ab7a97 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1254 (interactive)
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1255 (save-excursion (set-buffer rmail-buffer) (setq rmail-summary-buffer nil))
37614
17db314acfc2 (rmail-message-subject-p): Process the result
Gerd Moellmann <gerd@gnu.org>
parents: 37590
diff changeset
1256 (let ((local-rmail-buffer rmail-view-buffer))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1257 (kill-buffer (current-buffer))
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1258 ;; Delete window if not only one.
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1259 (if (not (eq (selected-window) (next-window nil 'no-minibuf)))
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1260 (delete-window))
5121
864d3ca7f2b6 (rmail-summary-wipe): If rmail buffer is not visible,
Richard M. Stallman <rms@gnu.org>
parents: 5006
diff changeset
1261 ;; Switch windows to the rmail buffer, or switch to it in this window.
864d3ca7f2b6 (rmail-summary-wipe): If rmail buffer is not visible,
Richard M. Stallman <rms@gnu.org>
parents: 5006
diff changeset
1262 (pop-to-buffer local-rmail-buffer)))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1263
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1264 (defun rmail-summary-expunge ()
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1265 "Actually erase all deleted messages and recompute summary headers."
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1266 (interactive)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1267 (save-excursion
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1268 (set-buffer rmail-buffer)
34482
0238666bb0bc (rmail-summary-expunge)
Gerd Moellmann <gerd@gnu.org>
parents: 34184
diff changeset
1269 (when (rmail-expunge-confirmed)
34184
595c282933a1 (rmail-summary-expunge)
Gerd Moellmann <gerd@gnu.org>
parents: 29210
diff changeset
1270 (rmail-only-expunge)))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1271 (rmail-update-summary))
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1272
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1273 (defun rmail-summary-expunge-and-save ()
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1274 "Expunge and save RMAIL file."
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1275 (interactive)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1276 (save-excursion
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1277 (set-buffer rmail-buffer)
34482
0238666bb0bc (rmail-summary-expunge)
Gerd Moellmann <gerd@gnu.org>
parents: 34184
diff changeset
1278 (when (rmail-expunge-confirmed)
34184
595c282933a1 (rmail-summary-expunge)
Gerd Moellmann <gerd@gnu.org>
parents: 29210
diff changeset
1279 (rmail-only-expunge)))
3466
c8f52c44d9a4 (rmail-summary-expunge-and-save): Do save-buffer last.
Richard M. Stallman <rms@gnu.org>
parents: 3461
diff changeset
1280 (rmail-update-summary)
c8f52c44d9a4 (rmail-summary-expunge-and-save): Do save-buffer last.
Richard M. Stallman <rms@gnu.org>
parents: 3461
diff changeset
1281 (save-excursion
3461
1dec1449324d (rmail-summary-expunge-and-save):
Richard M. Stallman <rms@gnu.org>
parents: 3443
diff changeset
1282 (set-buffer rmail-buffer)
5861
882894a8c217 (rmail-summary-expunge-and-save): Mark summary buffer as unmodified.
Karl Heuer <kwzh@gnu.org>
parents: 5709
diff changeset
1283 (save-buffer))
882894a8c217 (rmail-summary-expunge-and-save): Mark summary buffer as unmodified.
Karl Heuer <kwzh@gnu.org>
parents: 5709
diff changeset
1284 (set-buffer-modified-p nil))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1285
19570
a2a72d1e0970 (rmail-summary-get-new-mail):
Richard M. Stallman <rms@gnu.org>
parents: 19111
diff changeset
1286 (defun rmail-summary-get-new-mail (&optional file-name)
a2a72d1e0970 (rmail-summary-get-new-mail):
Richard M. Stallman <rms@gnu.org>
parents: 19111
diff changeset
1287 "Get new mail and recompute summary headers.
a2a72d1e0970 (rmail-summary-get-new-mail):
Richard M. Stallman <rms@gnu.org>
parents: 19111
diff changeset
1288
a2a72d1e0970 (rmail-summary-get-new-mail):
Richard M. Stallman <rms@gnu.org>
parents: 19111
diff changeset
1289 Optionally you can specify the file to get new mail from. In this case,
a2a72d1e0970 (rmail-summary-get-new-mail):
Richard M. Stallman <rms@gnu.org>
parents: 19111
diff changeset
1290 the file of new mail is not changed or deleted. Noninteractively, you can
a2a72d1e0970 (rmail-summary-get-new-mail):
Richard M. Stallman <rms@gnu.org>
parents: 19111
diff changeset
1291 pass the inbox file name as an argument. Interactively, a prefix
a2a72d1e0970 (rmail-summary-get-new-mail):
Richard M. Stallman <rms@gnu.org>
parents: 19111
diff changeset
1292 argument says to read a file name and use that file as the inbox."
a2a72d1e0970 (rmail-summary-get-new-mail):
Richard M. Stallman <rms@gnu.org>
parents: 19111
diff changeset
1293 (interactive
a2a72d1e0970 (rmail-summary-get-new-mail):
Richard M. Stallman <rms@gnu.org>
parents: 19111
diff changeset
1294 (list (if current-prefix-arg
a2a72d1e0970 (rmail-summary-get-new-mail):
Richard M. Stallman <rms@gnu.org>
parents: 19111
diff changeset
1295 (read-file-name "Get new mail from file: "))))
3466
c8f52c44d9a4 (rmail-summary-expunge-and-save): Do save-buffer last.
Richard M. Stallman <rms@gnu.org>
parents: 3461
diff changeset
1296 (let (msg)
c8f52c44d9a4 (rmail-summary-expunge-and-save): Do save-buffer last.
Richard M. Stallman <rms@gnu.org>
parents: 3461
diff changeset
1297 (save-excursion
c8f52c44d9a4 (rmail-summary-expunge-and-save): Do save-buffer last.
Richard M. Stallman <rms@gnu.org>
parents: 3461
diff changeset
1298 (set-buffer rmail-buffer)
19570
a2a72d1e0970 (rmail-summary-get-new-mail):
Richard M. Stallman <rms@gnu.org>
parents: 19111
diff changeset
1299 (rmail-get-new-mail file-name)
3466
c8f52c44d9a4 (rmail-summary-expunge-and-save): Do save-buffer last.
Richard M. Stallman <rms@gnu.org>
parents: 3461
diff changeset
1300 ;; Get the proper new message number.
c8f52c44d9a4 (rmail-summary-expunge-and-save): Do save-buffer last.
Richard M. Stallman <rms@gnu.org>
parents: 3461
diff changeset
1301 (setq msg rmail-current-message))
c8f52c44d9a4 (rmail-summary-expunge-and-save): Do save-buffer last.
Richard M. Stallman <rms@gnu.org>
parents: 3461
diff changeset
1302 ;; Make sure that message is displayed.
13663
197f7ae5493d (rmail-summary-get-new-mail): Don't call rmail-summary-goto-msg if msg is 0.
Richard M. Stallman <rms@gnu.org>
parents: 13515
diff changeset
1303 (or (zerop msg)
197f7ae5493d (rmail-summary-get-new-mail): Don't call rmail-summary-goto-msg if msg is 0.
Richard M. Stallman <rms@gnu.org>
parents: 13515
diff changeset
1304 (rmail-summary-goto-msg msg))))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1305
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1306 (defun rmail-summary-input (filename)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1307 "Run Rmail on file FILENAME."
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1308 (interactive "FRun rmail on RMAIL file: ")
3466
c8f52c44d9a4 (rmail-summary-expunge-and-save): Do save-buffer last.
Richard M. Stallman <rms@gnu.org>
parents: 3461
diff changeset
1309 ;; We switch windows here, then display the other Rmail file there.
c8f52c44d9a4 (rmail-summary-expunge-and-save): Do save-buffer last.
Richard M. Stallman <rms@gnu.org>
parents: 3461
diff changeset
1310 (pop-to-buffer rmail-buffer)
c8f52c44d9a4 (rmail-summary-expunge-and-save): Do save-buffer last.
Richard M. Stallman <rms@gnu.org>
parents: 3461
diff changeset
1311 (rmail filename))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1312
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1313 (defun rmail-summary-first-message ()
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1314 "Show first message in Rmail file from summary buffer."
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1315 (interactive)
63944
6f8d122757b4 (rmail-summary-redo): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 62764
diff changeset
1316 (with-no-warnings
6f8d122757b4 (rmail-summary-redo): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 62764
diff changeset
1317 (beginning-of-buffer)))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1318
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1319 (defun rmail-summary-last-message ()
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1320 "Show last message in Rmail file from summary buffer."
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1321 (interactive)
63944
6f8d122757b4 (rmail-summary-redo): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 62764
diff changeset
1322 (with-no-warnings
6f8d122757b4 (rmail-summary-redo): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 62764
diff changeset
1323 (end-of-buffer))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1324 (forward-line -1))
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1325
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1326 (defvar rmail-summary-edit-map nil)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1327 (if rmail-summary-edit-map
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1328 nil
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1329 (setq rmail-summary-edit-map
4990
8f5a44af0114 (rmail-summary-edit-map): Inherit text-mode-map properly.
Richard M. Stallman <rms@gnu.org>
parents: 3879
diff changeset
1330 (nconc (make-sparse-keymap) text-mode-map))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1331 (define-key rmail-summary-edit-map "\C-c\C-c" 'rmail-cease-edit)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1332 (define-key rmail-summary-edit-map "\C-c\C-]" 'rmail-abort-edit))
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1333
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1334 (defun rmail-summary-edit-current-message ()
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1335 "Edit the contents of this message."
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1336 (interactive)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1337 (pop-to-buffer rmail-buffer)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1338 (rmail-edit-current-message)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1339 (use-local-map rmail-summary-edit-map))
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1340
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1341 (defun rmail-summary-cease-edit ()
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1342 "Finish editing message, then go back to Rmail summary buffer."
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1343 (interactive)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1344 (rmail-cease-edit)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1345 (pop-to-buffer rmail-summary-buffer))
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1346
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1347 (defun rmail-summary-abort-edit ()
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1348 "Abort edit of current message; restore original contents.
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1349 Go back to summary buffer."
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1350 (interactive)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1351 (rmail-abort-edit)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1352 (pop-to-buffer rmail-summary-buffer))
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1353
3862
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1354 (defun rmail-summary-search-backward (regexp &optional n)
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1355 "Show message containing next match for REGEXP.
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1356 Prefix argument gives repeat count; negative argument means search
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1357 backwards (through earlier messages).
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1358 Interactively, empty argument means use same regexp used last time."
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1359 (interactive
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1360 (let* ((reversep (>= (prefix-numeric-value current-prefix-arg) 0))
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1361 (prompt
65680
ed770a0a7846 2005-09-24 Emilio C. Lopes <eclig@gmx.net>
Romain Francoise <romain@orebokech.com>
parents: 65206
diff changeset
1362 (concat (if reversep "Reverse " "") "Rmail search (regexp"))
3862
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1363 regexp)
65680
ed770a0a7846 2005-09-24 Emilio C. Lopes <eclig@gmx.net>
Romain Francoise <romain@orebokech.com>
parents: 65206
diff changeset
1364 (setq prompt
ed770a0a7846 2005-09-24 Emilio C. Lopes <eclig@gmx.net>
Romain Francoise <romain@orebokech.com>
parents: 65206
diff changeset
1365 (concat prompt
ed770a0a7846 2005-09-24 Emilio C. Lopes <eclig@gmx.net>
Romain Francoise <romain@orebokech.com>
parents: 65206
diff changeset
1366 (if rmail-search-last-regexp
ed770a0a7846 2005-09-24 Emilio C. Lopes <eclig@gmx.net>
Romain Francoise <romain@orebokech.com>
parents: 65206
diff changeset
1367 (concat ", default "
ed770a0a7846 2005-09-24 Emilio C. Lopes <eclig@gmx.net>
Romain Francoise <romain@orebokech.com>
parents: 65206
diff changeset
1368 rmail-search-last-regexp "): ")
ed770a0a7846 2005-09-24 Emilio C. Lopes <eclig@gmx.net>
Romain Francoise <romain@orebokech.com>
parents: 65206
diff changeset
1369 "): ")))
3862
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1370 (setq regexp (read-string prompt))
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1371 (cond ((not (equal regexp ""))
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1372 (setq rmail-search-last-regexp regexp))
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1373 ((not rmail-search-last-regexp)
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1374 (error "No previous Rmail search string")))
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1375 (list rmail-search-last-regexp
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1376 (prefix-numeric-value current-prefix-arg))))
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1377 ;; Don't use save-excursion because that prevents point from moving
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1378 ;; properly in the summary buffer.
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1379 (let ((buffer (current-buffer)))
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1380 (unwind-protect
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1381 (progn
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1382 (set-buffer rmail-buffer)
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1383 (rmail-search regexp (- n)))
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1384 (set-buffer buffer))))
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1385
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1386 (defun rmail-summary-search (regexp &optional n)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1387 "Show message containing next match for REGEXP.
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1388 Prefix argument gives repeat count; negative argument means search
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1389 backwards (through earlier messages).
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1390 Interactively, empty argument means use same regexp used last time."
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1391 (interactive
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1392 (let* ((reversep (< (prefix-numeric-value current-prefix-arg) 0))
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1393 (prompt
65680
ed770a0a7846 2005-09-24 Emilio C. Lopes <eclig@gmx.net>
Romain Francoise <romain@orebokech.com>
parents: 65206
diff changeset
1394 (concat (if reversep "Reverse " "") "Rmail search (regexp"))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1395 regexp)
65680
ed770a0a7846 2005-09-24 Emilio C. Lopes <eclig@gmx.net>
Romain Francoise <romain@orebokech.com>
parents: 65206
diff changeset
1396 (setq prompt
ed770a0a7846 2005-09-24 Emilio C. Lopes <eclig@gmx.net>
Romain Francoise <romain@orebokech.com>
parents: 65206
diff changeset
1397 (concat prompt
ed770a0a7846 2005-09-24 Emilio C. Lopes <eclig@gmx.net>
Romain Francoise <romain@orebokech.com>
parents: 65206
diff changeset
1398 (if rmail-search-last-regexp
ed770a0a7846 2005-09-24 Emilio C. Lopes <eclig@gmx.net>
Romain Francoise <romain@orebokech.com>
parents: 65206
diff changeset
1399 (concat ", default "
ed770a0a7846 2005-09-24 Emilio C. Lopes <eclig@gmx.net>
Romain Francoise <romain@orebokech.com>
parents: 65206
diff changeset
1400 rmail-search-last-regexp "): ")
ed770a0a7846 2005-09-24 Emilio C. Lopes <eclig@gmx.net>
Romain Francoise <romain@orebokech.com>
parents: 65206
diff changeset
1401 "): ")))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1402 (setq regexp (read-string prompt))
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1403 (cond ((not (equal regexp ""))
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1404 (setq rmail-search-last-regexp regexp))
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1405 ((not rmail-search-last-regexp)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1406 (error "No previous Rmail search string")))
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1407 (list rmail-search-last-regexp
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1408 (prefix-numeric-value current-prefix-arg))))
3862
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1409 ;; Don't use save-excursion because that prevents point from moving
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1410 ;; properly in the summary buffer.
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1411 (let ((buffer (current-buffer)))
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1412 (unwind-protect
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1413 (progn
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1414 (set-buffer rmail-buffer)
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1415 (rmail-search regexp n))
d65e83bd1120 (rmail-summary-mode-map): Add local menu bar bindings.
Richard M. Stallman <rms@gnu.org>
parents: 3509
diff changeset
1416 (set-buffer buffer))))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1417
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1418 (defun rmail-summary-toggle-header ()
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1419 "Show original message header if pruned header currently shown, or vice versa."
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1420 (interactive)
37614
17db314acfc2 (rmail-message-subject-p): Process the result
Gerd Moellmann <gerd@gnu.org>
parents: 37590
diff changeset
1421 (save-window-excursion
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1422 (set-buffer rmail-buffer)
11175
025aeb70cfed (rmail-summary-toggle-header): Make header visible in message buffer.
Richard M. Stallman <rms@gnu.org>
parents: 10784
diff changeset
1423 (rmail-toggle-header))
025aeb70cfed (rmail-summary-toggle-header): Make header visible in message buffer.
Richard M. Stallman <rms@gnu.org>
parents: 10784
diff changeset
1424 ;; Inside save-excursion, some changes to point in the RMAIL buffer are lost.
025aeb70cfed (rmail-summary-toggle-header): Make header visible in message buffer.
Richard M. Stallman <rms@gnu.org>
parents: 10784
diff changeset
1425 ;; Set point to point-min in the RMAIL buffer, if it is visible.
37614
17db314acfc2 (rmail-message-subject-p): Process the result
Gerd Moellmann <gerd@gnu.org>
parents: 37590
diff changeset
1426 (let ((window (get-buffer-window rmail-view-buffer)))
11175
025aeb70cfed (rmail-summary-toggle-header): Make header visible in message buffer.
Richard M. Stallman <rms@gnu.org>
parents: 10784
diff changeset
1427 (if window
025aeb70cfed (rmail-summary-toggle-header): Make header visible in message buffer.
Richard M. Stallman <rms@gnu.org>
parents: 10784
diff changeset
1428 ;; Using save-window-excursion would lose the new value of point.
025aeb70cfed (rmail-summary-toggle-header): Make header visible in message buffer.
Richard M. Stallman <rms@gnu.org>
parents: 10784
diff changeset
1429 (let ((owin (selected-window)))
025aeb70cfed (rmail-summary-toggle-header): Make header visible in message buffer.
Richard M. Stallman <rms@gnu.org>
parents: 10784
diff changeset
1430 (unwind-protect
025aeb70cfed (rmail-summary-toggle-header): Make header visible in message buffer.
Richard M. Stallman <rms@gnu.org>
parents: 10784
diff changeset
1431 (progn
025aeb70cfed (rmail-summary-toggle-header): Make header visible in message buffer.
Richard M. Stallman <rms@gnu.org>
parents: 10784
diff changeset
1432 (select-window window)
025aeb70cfed (rmail-summary-toggle-header): Make header visible in message buffer.
Richard M. Stallman <rms@gnu.org>
parents: 10784
diff changeset
1433 (goto-char (point-min)))
025aeb70cfed (rmail-summary-toggle-header): Make header visible in message buffer.
Richard M. Stallman <rms@gnu.org>
parents: 10784
diff changeset
1434 (select-window owin))))))
025aeb70cfed (rmail-summary-toggle-header): Make header visible in message buffer.
Richard M. Stallman <rms@gnu.org>
parents: 10784
diff changeset
1435
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1436
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1437 (defun rmail-summary-add-label (label)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1438 "Add LABEL to labels associated with current Rmail message.
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1439 Completion is performed over known labels when reading."
3461
1dec1449324d (rmail-summary-expunge-and-save):
Richard M. Stallman <rms@gnu.org>
parents: 3443
diff changeset
1440 (interactive (list (save-excursion
1dec1449324d (rmail-summary-expunge-and-save):
Richard M. Stallman <rms@gnu.org>
parents: 3443
diff changeset
1441 (set-buffer rmail-buffer)
1dec1449324d (rmail-summary-expunge-and-save):
Richard M. Stallman <rms@gnu.org>
parents: 3443
diff changeset
1442 (rmail-read-label "Add label"))))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1443 (save-excursion
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1444 (set-buffer rmail-buffer)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1445 (rmail-add-label label)))
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1446
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1447 (defun rmail-summary-kill-label (label)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1448 "Remove LABEL from labels associated with current Rmail message.
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1449 Completion is performed over known labels when reading."
3461
1dec1449324d (rmail-summary-expunge-and-save):
Richard M. Stallman <rms@gnu.org>
parents: 3443
diff changeset
1450 (interactive (list (save-excursion
1dec1449324d (rmail-summary-expunge-and-save):
Richard M. Stallman <rms@gnu.org>
parents: 3443
diff changeset
1451 (set-buffer rmail-buffer)
1dec1449324d (rmail-summary-expunge-and-save):
Richard M. Stallman <rms@gnu.org>
parents: 3443
diff changeset
1452 (rmail-read-label "Kill label"))))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1453 (save-excursion
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1454 (set-buffer rmail-buffer)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1455 (rmail-set-label label nil)))
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1456
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1457 ;;;; *** Rmail Summary Mailing Commands ***
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1458
36746
6e4beb27bc38 (rmail-summary-override-mail-send-and-exit):
Gerd Moellmann <gerd@gnu.org>
parents: 34482
diff changeset
1459 (defun rmail-summary-override-mail-send-and-exit ()
49637
32bf542aaf1c (rmail-summary-previous-msg): Add docstring.
John Paul Wallington <jpw@pobox.com>
parents: 49598
diff changeset
1460 "Replace bindings to `mail-send-and-exit' with `rmail-summary-send-and-exit'."
36746
6e4beb27bc38 (rmail-summary-override-mail-send-and-exit):
Gerd Moellmann <gerd@gnu.org>
parents: 34482
diff changeset
1461 (use-local-map (copy-keymap (current-local-map)))
6e4beb27bc38 (rmail-summary-override-mail-send-and-exit):
Gerd Moellmann <gerd@gnu.org>
parents: 34482
diff changeset
1462 (dolist (key (where-is-internal 'mail-send-and-exit))
6e4beb27bc38 (rmail-summary-override-mail-send-and-exit):
Gerd Moellmann <gerd@gnu.org>
parents: 34482
diff changeset
1463 (define-key (current-local-map) key 'rmail-summary-send-and-exit)))
6e4beb27bc38 (rmail-summary-override-mail-send-and-exit):
Gerd Moellmann <gerd@gnu.org>
parents: 34482
diff changeset
1464
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1465 (defun rmail-summary-mail ()
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1466 "Send mail in another window.
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1467 While composing the message, use \\[mail-yank-original] to yank the
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1468 original message into it."
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1469 (interactive)
10784
fdc9df3761d8 (rmail-summary-mail, rmail-summary-continue)
Richard M. Stallman <rms@gnu.org>
parents: 10663
diff changeset
1470 (let ((window (get-buffer-window rmail-buffer)))
fdc9df3761d8 (rmail-summary-mail, rmail-summary-continue)
Richard M. Stallman <rms@gnu.org>
parents: 10663
diff changeset
1471 (if window
fdc9df3761d8 (rmail-summary-mail, rmail-summary-continue)
Richard M. Stallman <rms@gnu.org>
parents: 10663
diff changeset
1472 (select-window window)
fdc9df3761d8 (rmail-summary-mail, rmail-summary-continue)
Richard M. Stallman <rms@gnu.org>
parents: 10663
diff changeset
1473 (set-buffer rmail-buffer)))
fdc9df3761d8 (rmail-summary-mail, rmail-summary-continue)
Richard M. Stallman <rms@gnu.org>
parents: 10663
diff changeset
1474 (rmail-start-mail nil nil nil nil nil (current-buffer))
36746
6e4beb27bc38 (rmail-summary-override-mail-send-and-exit):
Gerd Moellmann <gerd@gnu.org>
parents: 34482
diff changeset
1475 (rmail-summary-override-mail-send-and-exit))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1476
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1477 (defun rmail-summary-continue ()
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1478 "Continue composing outgoing message previously being composed."
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1479 (interactive)
10784
fdc9df3761d8 (rmail-summary-mail, rmail-summary-continue)
Richard M. Stallman <rms@gnu.org>
parents: 10663
diff changeset
1480 (let ((window (get-buffer-window rmail-buffer)))
fdc9df3761d8 (rmail-summary-mail, rmail-summary-continue)
Richard M. Stallman <rms@gnu.org>
parents: 10663
diff changeset
1481 (if window
fdc9df3761d8 (rmail-summary-mail, rmail-summary-continue)
Richard M. Stallman <rms@gnu.org>
parents: 10663
diff changeset
1482 (select-window window)
fdc9df3761d8 (rmail-summary-mail, rmail-summary-continue)
Richard M. Stallman <rms@gnu.org>
parents: 10663
diff changeset
1483 (set-buffer rmail-buffer)))
5709
85119c3098a0 Fix rmail summary commands to work with rmail-mail-new-frame.
Karl Heuer <kwzh@gnu.org>
parents: 5678
diff changeset
1484 (rmail-start-mail t))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1485
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1486 (defun rmail-summary-reply (just-sender)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1487 "Reply to the current message.
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1488 Normally include CC: to all other recipients of original message;
5709
85119c3098a0 Fix rmail summary commands to work with rmail-mail-new-frame.
Karl Heuer <kwzh@gnu.org>
parents: 5678
diff changeset
1489 prefix argument means ignore them. While composing the reply,
85119c3098a0 Fix rmail summary commands to work with rmail-mail-new-frame.
Karl Heuer <kwzh@gnu.org>
parents: 5678
diff changeset
1490 use \\[mail-yank-original] to yank the original message into it."
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1491 (interactive "P")
37614
17db314acfc2 (rmail-message-subject-p): Process the result
Gerd Moellmann <gerd@gnu.org>
parents: 37590
diff changeset
1492 (let ((window (get-buffer-window rmail-view-buffer)))
10784
fdc9df3761d8 (rmail-summary-mail, rmail-summary-continue)
Richard M. Stallman <rms@gnu.org>
parents: 10663
diff changeset
1493 (if window
fdc9df3761d8 (rmail-summary-mail, rmail-summary-continue)
Richard M. Stallman <rms@gnu.org>
parents: 10663
diff changeset
1494 (select-window window)
37614
17db314acfc2 (rmail-message-subject-p): Process the result
Gerd Moellmann <gerd@gnu.org>
parents: 37590
diff changeset
1495 (set-buffer rmail-view-buffer)))
5709
85119c3098a0 Fix rmail summary commands to work with rmail-mail-new-frame.
Karl Heuer <kwzh@gnu.org>
parents: 5678
diff changeset
1496 (rmail-reply just-sender)
36746
6e4beb27bc38 (rmail-summary-override-mail-send-and-exit):
Gerd Moellmann <gerd@gnu.org>
parents: 34482
diff changeset
1497 (rmail-summary-override-mail-send-and-exit))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1498
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1499 (defun rmail-summary-retry-failure ()
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1500 "Edit a mail message which is based on the contents of the current message.
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1501 For a message rejected by the mail system, extract the interesting headers and
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1502 the body of the original message; otherwise copy the current message."
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1503 (interactive)
10784
fdc9df3761d8 (rmail-summary-mail, rmail-summary-continue)
Richard M. Stallman <rms@gnu.org>
parents: 10663
diff changeset
1504 (let ((window (get-buffer-window rmail-buffer)))
fdc9df3761d8 (rmail-summary-mail, rmail-summary-continue)
Richard M. Stallman <rms@gnu.org>
parents: 10663
diff changeset
1505 (if window
fdc9df3761d8 (rmail-summary-mail, rmail-summary-continue)
Richard M. Stallman <rms@gnu.org>
parents: 10663
diff changeset
1506 (select-window window)
fdc9df3761d8 (rmail-summary-mail, rmail-summary-continue)
Richard M. Stallman <rms@gnu.org>
parents: 10663
diff changeset
1507 (set-buffer rmail-buffer)))
5709
85119c3098a0 Fix rmail summary commands to work with rmail-mail-new-frame.
Karl Heuer <kwzh@gnu.org>
parents: 5678
diff changeset
1508 (rmail-retry-failure)
36746
6e4beb27bc38 (rmail-summary-override-mail-send-and-exit):
Gerd Moellmann <gerd@gnu.org>
parents: 34482
diff changeset
1509 (rmail-summary-override-mail-send-and-exit))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1510
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1511 (defun rmail-summary-send-and-exit ()
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1512 "Send mail reply and return to summary buffer."
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1513 (interactive)
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1514 (mail-send-and-exit t))
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1515
5006
356f6a751fdf (rmail-summary-forward): Accept prefix arg
Richard M. Stallman <rms@gnu.org>
parents: 4990
diff changeset
1516 (defun rmail-summary-forward (resend)
356f6a751fdf (rmail-summary-forward): Accept prefix arg
Richard M. Stallman <rms@gnu.org>
parents: 4990
diff changeset
1517 "Forward the current message to another user.
356f6a751fdf (rmail-summary-forward): Accept prefix arg
Richard M. Stallman <rms@gnu.org>
parents: 4990
diff changeset
1518 With prefix argument, \"resend\" the message instead of forwarding it;
356f6a751fdf (rmail-summary-forward): Accept prefix arg
Richard M. Stallman <rms@gnu.org>
parents: 4990
diff changeset
1519 see the documentation of `rmail-resend'."
356f6a751fdf (rmail-summary-forward): Accept prefix arg
Richard M. Stallman <rms@gnu.org>
parents: 4990
diff changeset
1520 (interactive "P")
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1521 (save-excursion
10784
fdc9df3761d8 (rmail-summary-mail, rmail-summary-continue)
Richard M. Stallman <rms@gnu.org>
parents: 10663
diff changeset
1522 (let ((window (get-buffer-window rmail-buffer)))
fdc9df3761d8 (rmail-summary-mail, rmail-summary-continue)
Richard M. Stallman <rms@gnu.org>
parents: 10663
diff changeset
1523 (if window
fdc9df3761d8 (rmail-summary-mail, rmail-summary-continue)
Richard M. Stallman <rms@gnu.org>
parents: 10663
diff changeset
1524 (select-window window)
fdc9df3761d8 (rmail-summary-mail, rmail-summary-continue)
Richard M. Stallman <rms@gnu.org>
parents: 10663
diff changeset
1525 (set-buffer rmail-buffer)))
5006
356f6a751fdf (rmail-summary-forward): Accept prefix arg
Richard M. Stallman <rms@gnu.org>
parents: 4990
diff changeset
1526 (rmail-forward resend)
36746
6e4beb27bc38 (rmail-summary-override-mail-send-and-exit):
Gerd Moellmann <gerd@gnu.org>
parents: 34482
diff changeset
1527 (rmail-summary-override-mail-send-and-exit)))
9448
99ec41e9cb2e (rmail-summary-resend): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9432
diff changeset
1528
99ec41e9cb2e (rmail-summary-resend): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9432
diff changeset
1529 (defun rmail-summary-resend ()
49637
32bf542aaf1c (rmail-summary-previous-msg): Add docstring.
John Paul Wallington <jpw@pobox.com>
parents: 49598
diff changeset
1530 "Resend current message using `rmail-resend'."
9448
99ec41e9cb2e (rmail-summary-resend): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9432
diff changeset
1531 (interactive)
99ec41e9cb2e (rmail-summary-resend): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9432
diff changeset
1532 (save-excursion
10784
fdc9df3761d8 (rmail-summary-mail, rmail-summary-continue)
Richard M. Stallman <rms@gnu.org>
parents: 10663
diff changeset
1533 (let ((window (get-buffer-window rmail-buffer)))
fdc9df3761d8 (rmail-summary-mail, rmail-summary-continue)
Richard M. Stallman <rms@gnu.org>
parents: 10663
diff changeset
1534 (if window
fdc9df3761d8 (rmail-summary-mail, rmail-summary-continue)
Richard M. Stallman <rms@gnu.org>
parents: 10663
diff changeset
1535 (select-window window)
fdc9df3761d8 (rmail-summary-mail, rmail-summary-continue)
Richard M. Stallman <rms@gnu.org>
parents: 10663
diff changeset
1536 (set-buffer rmail-buffer)))
9448
99ec41e9cb2e (rmail-summary-resend): New function.
Richard M. Stallman <rms@gnu.org>
parents: 9432
diff changeset
1537 (call-interactively 'rmail-resend)))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1538
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1539 ;; Summary output commands.
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1540
24837
e8e1a22961da (rmail-summary-output-to-rmail-file): Fix typo.
Karl Heuer <kwzh@gnu.org>
parents: 23985
diff changeset
1541 (defun rmail-summary-output-to-rmail-file (&optional file-name n)
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1542 "Append the current message to an Rmail file named FILE-NAME.
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1543 If the file does not exist, ask if it should be created.
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1544 If file is being visited, the message is appended to the Emacs
23221
8d1c55a12c94 (rmail-summary-output-to-rmail-file):
Karl Heuer <kwzh@gnu.org>
parents: 22546
diff changeset
1545 buffer visiting that file.
8d1c55a12c94 (rmail-summary-output-to-rmail-file):
Karl Heuer <kwzh@gnu.org>
parents: 22546
diff changeset
1546
8d1c55a12c94 (rmail-summary-output-to-rmail-file):
Karl Heuer <kwzh@gnu.org>
parents: 22546
diff changeset
1547 A prefix argument N says to output N consecutive messages
8d1c55a12c94 (rmail-summary-output-to-rmail-file):
Karl Heuer <kwzh@gnu.org>
parents: 22546
diff changeset
1548 starting with the current one. Deleted messages are skipped and don't count."
23985
9cdc05332687 (rmail-summary-output-to-rmail-file):
Richard M. Stallman <rms@gnu.org>
parents: 23831
diff changeset
1549 (interactive
9cdc05332687 (rmail-summary-output-to-rmail-file):
Richard M. Stallman <rms@gnu.org>
parents: 23831
diff changeset
1550 (progn (require 'rmailout)
9cdc05332687 (rmail-summary-output-to-rmail-file):
Richard M. Stallman <rms@gnu.org>
parents: 23831
diff changeset
1551 (list (rmail-output-read-rmail-file-name)
9cdc05332687 (rmail-summary-output-to-rmail-file):
Richard M. Stallman <rms@gnu.org>
parents: 23831
diff changeset
1552 (prefix-numeric-value current-prefix-arg))))
24849
0e79d47f61d6 (rmail-summary-output-to-rmail-file): Avoid
Karl Heuer <kwzh@gnu.org>
parents: 24837
diff changeset
1553 (let ((i 0) prev-msg)
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 46130
diff changeset
1554 (while
24849
0e79d47f61d6 (rmail-summary-output-to-rmail-file): Avoid
Karl Heuer <kwzh@gnu.org>
parents: 24837
diff changeset
1555 (and (< i n)
0e79d47f61d6 (rmail-summary-output-to-rmail-file): Avoid
Karl Heuer <kwzh@gnu.org>
parents: 24837
diff changeset
1556 (progn (rmail-summary-goto-msg)
0e79d47f61d6 (rmail-summary-output-to-rmail-file): Avoid
Karl Heuer <kwzh@gnu.org>
parents: 24837
diff changeset
1557 (not (eq prev-msg
0e79d47f61d6 (rmail-summary-output-to-rmail-file): Avoid
Karl Heuer <kwzh@gnu.org>
parents: 24837
diff changeset
1558 (setq prev-msg
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 46130
diff changeset
1559 (with-current-buffer rmail-buffer
24849
0e79d47f61d6 (rmail-summary-output-to-rmail-file): Avoid
Karl Heuer <kwzh@gnu.org>
parents: 24837
diff changeset
1560 rmail-current-message))))))
23985
9cdc05332687 (rmail-summary-output-to-rmail-file):
Richard M. Stallman <rms@gnu.org>
parents: 23831
diff changeset
1561 (setq i (1+ i))
9cdc05332687 (rmail-summary-output-to-rmail-file):
Richard M. Stallman <rms@gnu.org>
parents: 23831
diff changeset
1562 (with-current-buffer rmail-buffer
9cdc05332687 (rmail-summary-output-to-rmail-file):
Richard M. Stallman <rms@gnu.org>
parents: 23831
diff changeset
1563 (let ((rmail-delete-after-output nil))
9cdc05332687 (rmail-summary-output-to-rmail-file):
Richard M. Stallman <rms@gnu.org>
parents: 23831
diff changeset
1564 (rmail-output-to-rmail-file file-name 1)))
9cdc05332687 (rmail-summary-output-to-rmail-file):
Richard M. Stallman <rms@gnu.org>
parents: 23831
diff changeset
1565 (if rmail-delete-after-output
9cdc05332687 (rmail-summary-output-to-rmail-file):
Richard M. Stallman <rms@gnu.org>
parents: 23831
diff changeset
1566 (rmail-summary-delete-forward nil)
9cdc05332687 (rmail-summary-output-to-rmail-file):
Richard M. Stallman <rms@gnu.org>
parents: 23831
diff changeset
1567 (if (< i n)
9cdc05332687 (rmail-summary-output-to-rmail-file):
Richard M. Stallman <rms@gnu.org>
parents: 23831
diff changeset
1568 (rmail-summary-next-msg 1))))))
9cdc05332687 (rmail-summary-output-to-rmail-file):
Richard M. Stallman <rms@gnu.org>
parents: 23831
diff changeset
1569
9cdc05332687 (rmail-summary-output-to-rmail-file):
Richard M. Stallman <rms@gnu.org>
parents: 23831
diff changeset
1570 (defun rmail-summary-output (&optional file-name n)
9cdc05332687 (rmail-summary-output-to-rmail-file):
Richard M. Stallman <rms@gnu.org>
parents: 23831
diff changeset
1571 "Append this message to Unix mail file named FILE-NAME.
9cdc05332687 (rmail-summary-output-to-rmail-file):
Richard M. Stallman <rms@gnu.org>
parents: 23831
diff changeset
1572
9cdc05332687 (rmail-summary-output-to-rmail-file):
Richard M. Stallman <rms@gnu.org>
parents: 23831
diff changeset
1573 A prefix argument N says to output N consecutive messages
9cdc05332687 (rmail-summary-output-to-rmail-file):
Richard M. Stallman <rms@gnu.org>
parents: 23831
diff changeset
1574 starting with the current one. Deleted messages are skipped and don't count."
9cdc05332687 (rmail-summary-output-to-rmail-file):
Richard M. Stallman <rms@gnu.org>
parents: 23831
diff changeset
1575 (interactive
9cdc05332687 (rmail-summary-output-to-rmail-file):
Richard M. Stallman <rms@gnu.org>
parents: 23831
diff changeset
1576 (progn (require 'rmailout)
9cdc05332687 (rmail-summary-output-to-rmail-file):
Richard M. Stallman <rms@gnu.org>
parents: 23831
diff changeset
1577 (list (rmail-output-read-file-name)
9cdc05332687 (rmail-summary-output-to-rmail-file):
Richard M. Stallman <rms@gnu.org>
parents: 23831
diff changeset
1578 (prefix-numeric-value current-prefix-arg))))
43481
21de4f4cda23 (rmail-summary-output): Properly advance
Richard M. Stallman <rms@gnu.org>
parents: 42001
diff changeset
1579 (let ((i 0) prev-msg)
21de4f4cda23 (rmail-summary-output): Properly advance
Richard M. Stallman <rms@gnu.org>
parents: 42001
diff changeset
1580 (while
21de4f4cda23 (rmail-summary-output): Properly advance
Richard M. Stallman <rms@gnu.org>
parents: 42001
diff changeset
1581 (and (< i n)
21de4f4cda23 (rmail-summary-output): Properly advance
Richard M. Stallman <rms@gnu.org>
parents: 42001
diff changeset
1582 (progn (rmail-summary-goto-msg)
21de4f4cda23 (rmail-summary-output): Properly advance
Richard M. Stallman <rms@gnu.org>
parents: 42001
diff changeset
1583 (not (eq prev-msg
21de4f4cda23 (rmail-summary-output): Properly advance
Richard M. Stallman <rms@gnu.org>
parents: 42001
diff changeset
1584 (setq prev-msg
21de4f4cda23 (rmail-summary-output): Properly advance
Richard M. Stallman <rms@gnu.org>
parents: 42001
diff changeset
1585 (with-current-buffer rmail-buffer
21de4f4cda23 (rmail-summary-output): Properly advance
Richard M. Stallman <rms@gnu.org>
parents: 42001
diff changeset
1586 rmail-current-message))))))
23985
9cdc05332687 (rmail-summary-output-to-rmail-file):
Richard M. Stallman <rms@gnu.org>
parents: 23831
diff changeset
1587 (setq i (1+ i))
9cdc05332687 (rmail-summary-output-to-rmail-file):
Richard M. Stallman <rms@gnu.org>
parents: 23831
diff changeset
1588 (with-current-buffer rmail-buffer
9cdc05332687 (rmail-summary-output-to-rmail-file):
Richard M. Stallman <rms@gnu.org>
parents: 23831
diff changeset
1589 (let ((rmail-delete-after-output nil))
9cdc05332687 (rmail-summary-output-to-rmail-file):
Richard M. Stallman <rms@gnu.org>
parents: 23831
diff changeset
1590 (rmail-output file-name 1)))
9cdc05332687 (rmail-summary-output-to-rmail-file):
Richard M. Stallman <rms@gnu.org>
parents: 23831
diff changeset
1591 (if rmail-delete-after-output
9cdc05332687 (rmail-summary-output-to-rmail-file):
Richard M. Stallman <rms@gnu.org>
parents: 23831
diff changeset
1592 (rmail-summary-delete-forward nil)
9cdc05332687 (rmail-summary-output-to-rmail-file):
Richard M. Stallman <rms@gnu.org>
parents: 23831
diff changeset
1593 (if (< i n)
9cdc05332687 (rmail-summary-output-to-rmail-file):
Richard M. Stallman <rms@gnu.org>
parents: 23831
diff changeset
1594 (rmail-summary-next-msg 1))))))
2077
6885836c2f98 (rmail-update-summary): New function.
Richard M. Stallman <rms@gnu.org>
parents: 845
diff changeset
1595
8635
a241401a67ff (rmail-summary-output-menu): New command.
Richard M. Stallman <rms@gnu.org>
parents: 8547
diff changeset
1596 (defun rmail-summary-output-menu ()
a241401a67ff (rmail-summary-output-menu): New command.
Richard M. Stallman <rms@gnu.org>
parents: 8547
diff changeset
1597 "Output current message to another Rmail file, chosen with a menu.
a241401a67ff (rmail-summary-output-menu): New command.
Richard M. Stallman <rms@gnu.org>
parents: 8547
diff changeset
1598 Also set the default for subsequent \\[rmail-output-to-rmail-file] commands.
a241401a67ff (rmail-summary-output-menu): New command.
Richard M. Stallman <rms@gnu.org>
parents: 8547
diff changeset
1599 The variables `rmail-secondary-file-directory' and
a241401a67ff (rmail-summary-output-menu): New command.
Richard M. Stallman <rms@gnu.org>
parents: 8547
diff changeset
1600 `rmail-secondary-file-regexp' control which files are offered in the menu."
a241401a67ff (rmail-summary-output-menu): New command.
Richard M. Stallman <rms@gnu.org>
parents: 8547
diff changeset
1601 (interactive)
a241401a67ff (rmail-summary-output-menu): New command.
Richard M. Stallman <rms@gnu.org>
parents: 8547
diff changeset
1602 (save-excursion
a241401a67ff (rmail-summary-output-menu): New command.
Richard M. Stallman <rms@gnu.org>
parents: 8547
diff changeset
1603 (set-buffer rmail-buffer)
a241401a67ff (rmail-summary-output-menu): New command.
Richard M. Stallman <rms@gnu.org>
parents: 8547
diff changeset
1604 (let ((rmail-delete-after-output nil))
a241401a67ff (rmail-summary-output-menu): New command.
Richard M. Stallman <rms@gnu.org>
parents: 8547
diff changeset
1605 (call-interactively 'rmail-output-menu)))
a241401a67ff (rmail-summary-output-menu): New command.
Richard M. Stallman <rms@gnu.org>
parents: 8547
diff changeset
1606 (if rmail-delete-after-output
a241401a67ff (rmail-summary-output-menu): New command.
Richard M. Stallman <rms@gnu.org>
parents: 8547
diff changeset
1607 (rmail-summary-delete-forward nil)))
a241401a67ff (rmail-summary-output-menu): New command.
Richard M. Stallman <rms@gnu.org>
parents: 8547
diff changeset
1608
8911
3abf3f2ef6cf (rmail-summary-construct-io-menu): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8728
diff changeset
1609 (defun rmail-summary-construct-io-menu ()
3abf3f2ef6cf (rmail-summary-construct-io-menu): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8728
diff changeset
1610 (let ((files (rmail-find-all-files rmail-secondary-file-directory)))
13001
7946d20948fc (rmail-summary-construct-io-menu): Use all of FILES.
Richard M. Stallman <rms@gnu.org>
parents: 12911
diff changeset
1611 (if files
8911
3abf3f2ef6cf (rmail-summary-construct-io-menu): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8728
diff changeset
1612 (progn
3abf3f2ef6cf (rmail-summary-construct-io-menu): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8728
diff changeset
1613 (define-key rmail-summary-mode-map [menu-bar classify input-menu]
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 46130
diff changeset
1614 (cons "Input Rmail File"
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 46130
diff changeset
1615 (rmail-list-to-menu "Input Rmail File"
13001
7946d20948fc (rmail-summary-construct-io-menu): Use all of FILES.
Richard M. Stallman <rms@gnu.org>
parents: 12911
diff changeset
1616 files
8911
3abf3f2ef6cf (rmail-summary-construct-io-menu): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8728
diff changeset
1617 'rmail-summary-input)))
3abf3f2ef6cf (rmail-summary-construct-io-menu): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8728
diff changeset
1618 (define-key rmail-summary-mode-map [menu-bar classify output-menu]
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 46130
diff changeset
1619 (cons "Output Rmail File"
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 46130
diff changeset
1620 (rmail-list-to-menu "Output Rmail File"
13001
7946d20948fc (rmail-summary-construct-io-menu): Use all of FILES.
Richard M. Stallman <rms@gnu.org>
parents: 12911
diff changeset
1621 files
7946d20948fc (rmail-summary-construct-io-menu): Use all of FILES.
Richard M. Stallman <rms@gnu.org>
parents: 12911
diff changeset
1622 'rmail-summary-output-to-rmail-file))))
7946d20948fc (rmail-summary-construct-io-menu): Use all of FILES.
Richard M. Stallman <rms@gnu.org>
parents: 12911
diff changeset
1623 (define-key rmail-summary-mode-map [menu-bar classify input-menu]
7946d20948fc (rmail-summary-construct-io-menu): Use all of FILES.
Richard M. Stallman <rms@gnu.org>
parents: 12911
diff changeset
1624 '("Input Rmail File" . rmail-disable-menu))
7946d20948fc (rmail-summary-construct-io-menu): Use all of FILES.
Richard M. Stallman <rms@gnu.org>
parents: 12911
diff changeset
1625 (define-key rmail-summary-mode-map [menu-bar classify output-menu]
7946d20948fc (rmail-summary-construct-io-menu): Use all of FILES.
Richard M. Stallman <rms@gnu.org>
parents: 12911
diff changeset
1626 '("Output Rmail File" . rmail-disable-menu)))))
8911
3abf3f2ef6cf (rmail-summary-construct-io-menu): New function.
Richard M. Stallman <rms@gnu.org>
parents: 8728
diff changeset
1627
22203
481d174f762a (rmail-summary-output-body): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20081
diff changeset
1628 (defun rmail-summary-output-body (&optional file-name)
481d174f762a (rmail-summary-output-body): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20081
diff changeset
1629 "Write this message body to the file FILE-NAME.
481d174f762a (rmail-summary-output-body): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20081
diff changeset
1630 FILE-NAME defaults, interactively, from the Subject field of the message."
481d174f762a (rmail-summary-output-body): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20081
diff changeset
1631 (interactive)
481d174f762a (rmail-summary-output-body): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20081
diff changeset
1632 (save-excursion
481d174f762a (rmail-summary-output-body): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20081
diff changeset
1633 (set-buffer rmail-buffer)
481d174f762a (rmail-summary-output-body): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20081
diff changeset
1634 (let ((rmail-delete-after-output nil))
481d174f762a (rmail-summary-output-body): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20081
diff changeset
1635 (if file-name
481d174f762a (rmail-summary-output-body): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20081
diff changeset
1636 (rmail-output-body-to-file file-name)
481d174f762a (rmail-summary-output-body): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20081
diff changeset
1637 (call-interactively 'rmail-output-body-to-file))))
481d174f762a (rmail-summary-output-body): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20081
diff changeset
1638 (if rmail-delete-after-output
481d174f762a (rmail-summary-output-body): New function.
Richard M. Stallman <rms@gnu.org>
parents: 20081
diff changeset
1639 (rmail-summary-delete-forward nil)))
3879
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1640
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1641 ;; Sorting messages in Rmail Summary buffer.
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1642
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1643 (defun rmail-summary-sort-by-date (reverse)
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1644 "Sort messages of current Rmail summary by date.
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1645 If prefix argument REVERSE is non-nil, sort them in reverse order."
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1646 (interactive "P")
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1647 (rmail-sort-from-summary (function rmail-sort-by-date) reverse))
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1648
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1649 (defun rmail-summary-sort-by-subject (reverse)
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1650 "Sort messages of current Rmail summary by subject.
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1651 If prefix argument REVERSE is non-nil, sort them in reverse order."
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1652 (interactive "P")
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1653 (rmail-sort-from-summary (function rmail-sort-by-subject) reverse))
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1654
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1655 (defun rmail-summary-sort-by-author (reverse)
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1656 "Sort messages of current Rmail summary by author.
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1657 If prefix argument REVERSE is non-nil, sort them in reverse order."
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1658 (interactive "P")
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1659 (rmail-sort-from-summary (function rmail-sort-by-author) reverse))
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1660
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1661 (defun rmail-summary-sort-by-recipient (reverse)
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1662 "Sort messages of current Rmail summary by recipient.
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1663 If prefix argument REVERSE is non-nil, sort them in reverse order."
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1664 (interactive "P")
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1665 (rmail-sort-from-summary (function rmail-sort-by-recipient) reverse))
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1666
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1667 (defun rmail-summary-sort-by-correspondent (reverse)
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1668 "Sort messages of current Rmail summary by other correspondent.
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1669 If prefix argument REVERSE is non-nil, sort them in reverse order."
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1670 (interactive "P")
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1671 (rmail-sort-from-summary (function rmail-sort-by-correspondent) reverse))
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1672
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1673 (defun rmail-summary-sort-by-lines (reverse)
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1674 "Sort messages of current Rmail summary by lines of the message.
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1675 If prefix argument REVERSE is non-nil, sort them in reverse order."
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1676 (interactive "P")
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1677 (rmail-sort-from-summary (function rmail-sort-by-lines) reverse))
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1678
37590
003e23c611eb (rmail-summary-sort-by-labels): Renamed
Gerd Moellmann <gerd@gnu.org>
parents: 36746
diff changeset
1679 (defun rmail-summary-sort-by-labels (reverse labels)
003e23c611eb (rmail-summary-sort-by-labels): Renamed
Gerd Moellmann <gerd@gnu.org>
parents: 36746
diff changeset
1680 "Sort messages of current Rmail summary by labels.
6717
2121bf252398 (rmail-summary-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6688
diff changeset
1681 If prefix argument REVERSE is non-nil, sort them in reverse order.
2121bf252398 (rmail-summary-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6688
diff changeset
1682 KEYWORDS is a comma-separated list of labels."
2121bf252398 (rmail-summary-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6688
diff changeset
1683 (interactive "P\nsSort by labels: ")
2121bf252398 (rmail-summary-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6688
diff changeset
1684 (rmail-sort-from-summary
2121bf252398 (rmail-summary-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6688
diff changeset
1685 (function (lambda (reverse)
37590
003e23c611eb (rmail-summary-sort-by-labels): Renamed
Gerd Moellmann <gerd@gnu.org>
parents: 36746
diff changeset
1686 (rmail-sort-by-labels reverse labels)))
6717
2121bf252398 (rmail-summary-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6688
diff changeset
1687 reverse))
2121bf252398 (rmail-summary-sort-by-keywords): New function.
Karl Heuer <kwzh@gnu.org>
parents: 6688
diff changeset
1688
3879
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1689 (defun rmail-sort-from-summary (sortfun reverse)
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1690 "Sort Rmail messages from Summary buffer and update it after sorting."
b8c99f30ca3f (rmail-summary-mode-map): Bind summary sort commands.
Richard M. Stallman <rms@gnu.org>
parents: 3862
diff changeset
1691 (require 'rmailsort)
6582
bac8e17d51b3 (rmail-sort-from-summary): Preserve window selection.
Karl Heuer <kwzh@gnu.org>
parents: 6422
diff changeset
1692 (let ((selwin (selected-window)))
bac8e17d51b3 (rmail-sort-from-summary): Preserve window selection.
Karl Heuer <kwzh@gnu.org>
parents: 6422
diff changeset
1693 (unwind-protect
bac8e17d51b3 (rmail-sort-from-summary): Preserve window selection.
Karl Heuer <kwzh@gnu.org>
parents: 6422
diff changeset
1694 (progn (pop-to-buffer rmail-buffer)
bac8e17d51b3 (rmail-sort-from-summary): Preserve window selection.
Karl Heuer <kwzh@gnu.org>
parents: 6422
diff changeset
1695 (funcall sortfun reverse))
bac8e17d51b3 (rmail-sort-from-summary): Preserve window selection.
Karl Heuer <kwzh@gnu.org>
parents: 6422
diff changeset
1696 (select-window selwin))))
658
7cbd4fcd8b0f *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 130
diff changeset
1697
29210
6fa5b7f5de9c Add provide.
Dave Love <fx@gnu.org>
parents: 28487
diff changeset
1698 (provide 'rmailsum)
6fa5b7f5de9c Add provide.
Dave Love <fx@gnu.org>
parents: 28487
diff changeset
1699
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 50502
diff changeset
1700 ;;; arch-tag: 556079ee-75c1-47f5-9884-2e0a0bc6c5a1
658
7cbd4fcd8b0f *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 130
diff changeset
1701 ;;; rmailsum.el ends here