Mercurial > emacs
annotate lisp/mail/rmailkwd.el @ 77726:f0732d60c635
(magic-mode-alist, magic-fallback-mode-alist):
Move the *ml, Postscript, and XmCD entries to the fallback part.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Wed, 16 May 2007 16:13:12 +0000 |
parents | e3694f1cb928 |
children | 8e27d63c45eb 95d0cdf160ea |
rev | line source |
---|---|
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
37612
diff
changeset
|
1 ;;; rmailkwd.el --- part of the "RMAIL" mail reader for Emacs |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
195
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, 1988, 1994, 2001, 2002, 2003, 2004, |
75347 | 4 ;; 2005, 2006, 2007 Free Software Foundation, Inc. |
845 | 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 |
36 | 9 ;; This file is part of GNU Emacs. |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
13 ;; the Free Software Foundation; either version 2, or (at your option) |
36 | 14 ;; any later version. |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
14169 | 22 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64085 | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02110-1301, USA. | |
36 | 25 |
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
37612
diff
changeset
|
26 ;;; Commentary: |
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
37612
diff
changeset
|
27 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
28 ;;; Code: |
36 | 29 |
65208
a4542b9b5f1c
(rmail-buffer, rmail-current-message, rmail-last-label, rmail-last-multi-labels,
Juanma Barranquero <lekktu@gmail.com>
parents:
64754
diff
changeset
|
30 (defvar rmail-buffer) |
a4542b9b5f1c
(rmail-buffer, rmail-current-message, rmail-last-label, rmail-last-multi-labels,
Juanma Barranquero <lekktu@gmail.com>
parents:
64754
diff
changeset
|
31 (defvar rmail-current-message) |
a4542b9b5f1c
(rmail-buffer, rmail-current-message, rmail-last-label, rmail-last-multi-labels,
Juanma Barranquero <lekktu@gmail.com>
parents:
64754
diff
changeset
|
32 (defvar rmail-last-label) |
a4542b9b5f1c
(rmail-buffer, rmail-current-message, rmail-last-label, rmail-last-multi-labels,
Juanma Barranquero <lekktu@gmail.com>
parents:
64754
diff
changeset
|
33 (defvar rmail-last-multi-labels) |
a4542b9b5f1c
(rmail-buffer, rmail-current-message, rmail-last-label, rmail-last-multi-labels,
Juanma Barranquero <lekktu@gmail.com>
parents:
64754
diff
changeset
|
34 (defvar rmail-summary-vector) |
a4542b9b5f1c
(rmail-buffer, rmail-current-message, rmail-last-label, rmail-last-multi-labels,
Juanma Barranquero <lekktu@gmail.com>
parents:
64754
diff
changeset
|
35 (defvar rmail-total-messages) |
a4542b9b5f1c
(rmail-buffer, rmail-current-message, rmail-last-label, rmail-last-multi-labels,
Juanma Barranquero <lekktu@gmail.com>
parents:
64754
diff
changeset
|
36 |
36 | 37 ;; Global to all RMAIL buffers. It exists primarily for the sake of |
38 ;; completion. It is better to use strings with the label functions | |
39 ;; and let them worry about making the label. | |
40 | |
41 (defvar rmail-label-obarray (make-vector 47 0)) | |
42 | |
43 ;; Named list of symbols representing valid message attributes in RMAIL. | |
44 | |
45 (defconst rmail-attributes | |
46 (cons 'rmail-keywords | |
11508
f04aa4cd5182
(rmail-attributes): Recognize "resent" attribute.
Karl Heuer <kwzh@gnu.org>
parents:
7300
diff
changeset
|
47 (mapcar (function (lambda (s) (intern s rmail-label-obarray))) |
f04aa4cd5182
(rmail-attributes): Recognize "resent" attribute.
Karl Heuer <kwzh@gnu.org>
parents:
7300
diff
changeset
|
48 '("deleted" "answered" "filed" "forwarded" "unseen" "edited" |
f04aa4cd5182
(rmail-attributes): Recognize "resent" attribute.
Karl Heuer <kwzh@gnu.org>
parents:
7300
diff
changeset
|
49 "resent")))) |
36 | 50 |
51 (defconst rmail-deleted-label (intern "deleted" rmail-label-obarray)) | |
52 | |
53 ;; Named list of symbols representing valid message keywords in RMAIL. | |
54 | |
16289
38aee5b6ac73
(rmail-keywords): Don't initialize.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
55 (defvar rmail-keywords) |
36 | 56 |
16345
22d0a2f6a374
(rmail-read-label, rmail-add-label, rmail-kill-label)
Richard M. Stallman <rms@gnu.org>
parents:
16289
diff
changeset
|
57 ;;;###autoload |
36 | 58 (defun rmail-add-label (string) |
59 "Add LABEL to labels associated with current RMAIL message. | |
60 Completion is performed over known labels when reading." | |
61 (interactive (list (rmail-read-label "Add label"))) | |
62 (rmail-set-label string t)) | |
63 | |
16345
22d0a2f6a374
(rmail-read-label, rmail-add-label, rmail-kill-label)
Richard M. Stallman <rms@gnu.org>
parents:
16289
diff
changeset
|
64 ;;;###autoload |
36 | 65 (defun rmail-kill-label (string) |
66 "Remove LABEL from labels associated with current RMAIL message. | |
67 Completion is performed over known labels when reading." | |
68 (interactive (list (rmail-read-label "Remove label"))) | |
69 (rmail-set-label string nil)) | |
70 | |
16345
22d0a2f6a374
(rmail-read-label, rmail-add-label, rmail-kill-label)
Richard M. Stallman <rms@gnu.org>
parents:
16289
diff
changeset
|
71 ;;;###autoload |
36 | 72 (defun rmail-read-label (prompt) |
37612
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
73 (with-current-buffer rmail-buffer |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
74 (if (not rmail-keywords) (rmail-parse-file-keywords)) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
75 (let ((result |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
76 (completing-read (concat prompt |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
77 (if rmail-last-label |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
78 (concat " (default " |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
79 (symbol-name rmail-last-label) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
80 "): ") |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
81 ": ")) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
82 rmail-label-obarray |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
83 nil |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
84 nil))) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
85 (if (string= result "") |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
86 rmail-last-label |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
87 (setq rmail-last-label (rmail-make-label result t)))))) |
36 | 88 |
89 (defun rmail-set-label (l state &optional n) | |
37612
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
90 (with-current-buffer rmail-buffer |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
91 (rmail-maybe-set-message-counters) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
92 (if (not n) (setq n rmail-current-message)) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
93 (aset rmail-summary-vector (1- n) nil) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
94 (let* ((attribute (rmail-attribute-p l)) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
95 (keyword (and (not attribute) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
96 (or (rmail-keyword-p l) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
97 (rmail-install-keyword l)))) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
98 (label (or attribute keyword))) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
99 (if label |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
100 (let ((omax (- (buffer-size) (point-max))) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
101 (omin (- (buffer-size) (point-min))) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
102 (buffer-read-only nil) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
103 (case-fold-search t)) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
104 (unwind-protect |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
105 (save-excursion |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
106 (widen) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
107 (goto-char (rmail-msgbeg n)) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
108 (forward-line 1) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
109 (if (not (looking-at "[01],")) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
110 nil |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
111 (let ((start (1+ (point))) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
112 (bound)) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
113 (narrow-to-region (point) (progn (end-of-line) (point))) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
114 (setq bound (point-max)) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
115 (search-backward ",," nil t) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
116 (if attribute |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
117 (setq bound (1+ (point))) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
118 (setq start (1+ (point)))) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
119 (goto-char start) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
120 ; (while (re-search-forward "[ \t]*,[ \t]*" nil t) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
121 ; (replace-match ",")) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
122 ; (goto-char start) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
123 (if (re-search-forward |
36 | 124 (concat ", " (rmail-quote-label-name label) ",") |
125 bound | |
126 'move) | |
37612
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
127 (if (not state) (replace-match ",")) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
128 (if state (insert " " (symbol-name label) ","))) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
129 (if (eq label rmail-deleted-label) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
130 (rmail-set-message-deleted-p n state))))) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
131 (narrow-to-region (- (buffer-size) omin) (- (buffer-size) omax)) |
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
132 (if (= n rmail-current-message) (rmail-display-labels)))))))) |
36 | 133 |
134 ;; Commented functions aren't used by RMAIL but might be nice for user | |
135 ;; packages that do stuff with RMAIL. Note that rmail-message-labels-p | |
195 | 136 ;; is in rmail.el now. |
36 | 137 |
138 ;(defun rmail-message-label-p (label &optional n) | |
139 ; "Returns symbol if LABEL (attribute or keyword) on NTH or current message." | |
6621
82404c81aac8
(rmail-message-label-p, rmail-parse-message-labels):
Karl Heuer <kwzh@gnu.org>
parents:
845
diff
changeset
|
140 ; (rmail-message-labels-p (or n rmail-current-message) (regexp-quote label))) |
36 | 141 |
142 ;(defun rmail-parse-message-labels (&optional n) | |
143 ; "Returns labels associated with NTH or current RMAIL message. | |
6621
82404c81aac8
(rmail-message-label-p, rmail-parse-message-labels):
Karl Heuer <kwzh@gnu.org>
parents:
845
diff
changeset
|
144 ;The result is a list of two lists of strings. The first is the |
82404c81aac8
(rmail-message-label-p, rmail-parse-message-labels):
Karl Heuer <kwzh@gnu.org>
parents:
845
diff
changeset
|
145 ;message attributes and the second is the message keywords." |
82404c81aac8
(rmail-message-label-p, rmail-parse-message-labels):
Karl Heuer <kwzh@gnu.org>
parents:
845
diff
changeset
|
146 ; (let (atts keys) |
82404c81aac8
(rmail-message-label-p, rmail-parse-message-labels):
Karl Heuer <kwzh@gnu.org>
parents:
845
diff
changeset
|
147 ; (save-restriction |
82404c81aac8
(rmail-message-label-p, rmail-parse-message-labels):
Karl Heuer <kwzh@gnu.org>
parents:
845
diff
changeset
|
148 ; (widen) |
82404c81aac8
(rmail-message-label-p, rmail-parse-message-labels):
Karl Heuer <kwzh@gnu.org>
parents:
845
diff
changeset
|
149 ; (goto-char (rmail-msgbeg (or n rmail-current-message))) |
82404c81aac8
(rmail-message-label-p, rmail-parse-message-labels):
Karl Heuer <kwzh@gnu.org>
parents:
845
diff
changeset
|
150 ; (forward-line 1) |
82404c81aac8
(rmail-message-label-p, rmail-parse-message-labels):
Karl Heuer <kwzh@gnu.org>
parents:
845
diff
changeset
|
151 ; (or (looking-at "[01],") (error "Malformed label line")) |
82404c81aac8
(rmail-message-label-p, rmail-parse-message-labels):
Karl Heuer <kwzh@gnu.org>
parents:
845
diff
changeset
|
152 ; (forward-char 2) |
82404c81aac8
(rmail-message-label-p, rmail-parse-message-labels):
Karl Heuer <kwzh@gnu.org>
parents:
845
diff
changeset
|
153 ; (while (looking-at "[ \t]*\\([^ \t\n,]+\\),") |
82404c81aac8
(rmail-message-label-p, rmail-parse-message-labels):
Karl Heuer <kwzh@gnu.org>
parents:
845
diff
changeset
|
154 ; (setq atts (cons (buffer-substring (match-beginning 1) (match-end 1)) |
82404c81aac8
(rmail-message-label-p, rmail-parse-message-labels):
Karl Heuer <kwzh@gnu.org>
parents:
845
diff
changeset
|
155 ; atts)) |
82404c81aac8
(rmail-message-label-p, rmail-parse-message-labels):
Karl Heuer <kwzh@gnu.org>
parents:
845
diff
changeset
|
156 ; (goto-char (match-end 0))) |
82404c81aac8
(rmail-message-label-p, rmail-parse-message-labels):
Karl Heuer <kwzh@gnu.org>
parents:
845
diff
changeset
|
157 ; (or (looking-at ",") (error "Malformed label line")) |
82404c81aac8
(rmail-message-label-p, rmail-parse-message-labels):
Karl Heuer <kwzh@gnu.org>
parents:
845
diff
changeset
|
158 ; (forward-char 1) |
82404c81aac8
(rmail-message-label-p, rmail-parse-message-labels):
Karl Heuer <kwzh@gnu.org>
parents:
845
diff
changeset
|
159 ; (while (looking-at "[ \t]*\\([^ \t\n,]+\\),") |
82404c81aac8
(rmail-message-label-p, rmail-parse-message-labels):
Karl Heuer <kwzh@gnu.org>
parents:
845
diff
changeset
|
160 ; (setq keys (cons (buffer-substring (match-beginning 1) (match-end 1)) |
82404c81aac8
(rmail-message-label-p, rmail-parse-message-labels):
Karl Heuer <kwzh@gnu.org>
parents:
845
diff
changeset
|
161 ; keys)) |
82404c81aac8
(rmail-message-label-p, rmail-parse-message-labels):
Karl Heuer <kwzh@gnu.org>
parents:
845
diff
changeset
|
162 ; (goto-char (match-end 0))) |
82404c81aac8
(rmail-message-label-p, rmail-parse-message-labels):
Karl Heuer <kwzh@gnu.org>
parents:
845
diff
changeset
|
163 ; (or (looking-at "[ \t]*$") (error "Malformed label line")) |
82404c81aac8
(rmail-message-label-p, rmail-parse-message-labels):
Karl Heuer <kwzh@gnu.org>
parents:
845
diff
changeset
|
164 ; (list (nreverse atts) (nreverse keys))))) |
36 | 165 |
166 (defun rmail-attribute-p (s) | |
167 (let ((symbol (rmail-make-label s))) | |
168 (if (memq symbol (cdr rmail-attributes)) symbol))) | |
169 | |
170 (defun rmail-keyword-p (s) | |
171 (let ((symbol (rmail-make-label s))) | |
172 (if (memq symbol (cdr (rmail-keywords))) symbol))) | |
173 | |
174 (defun rmail-make-label (s &optional forcep) | |
175 (cond ((symbolp s) s) | |
176 (forcep (intern (downcase s) rmail-label-obarray)) | |
177 (t (intern-soft (downcase s) rmail-label-obarray)))) | |
178 | |
179 (defun rmail-force-make-label (s) | |
180 (intern (downcase s) rmail-label-obarray)) | |
181 | |
182 (defun rmail-quote-label-name (label) | |
183 (regexp-quote (symbol-name (rmail-make-label label t)))) | |
184 | |
185 ;; Motion on messages with keywords. | |
186 | |
16345
22d0a2f6a374
(rmail-read-label, rmail-add-label, rmail-kill-label)
Richard M. Stallman <rms@gnu.org>
parents:
16289
diff
changeset
|
187 ;;;###autoload |
195 | 188 (defun rmail-previous-labeled-message (n labels) |
189 "Show previous message with one of the labels LABELS. | |
190 LABELS should be a comma-separated list of label names. | |
191 If LABELS is empty, the last set of labels specified is used. | |
36 | 192 With prefix argument N moves backward N messages with these labels." |
193 (interactive "p\nsMove to previous msg with labels: ") | |
195 | 194 (rmail-next-labeled-message (- n) labels)) |
36 | 195 |
16345
22d0a2f6a374
(rmail-read-label, rmail-add-label, rmail-kill-label)
Richard M. Stallman <rms@gnu.org>
parents:
16289
diff
changeset
|
196 ;;;###autoload |
36 | 197 (defun rmail-next-labeled-message (n labels) |
195 | 198 "Show next message with one of the labels LABELS. |
199 LABELS should be a comma-separated list of label names. | |
200 If LABELS is empty, the last set of labels specified is used. | |
36 | 201 With prefix argument N moves forward N messages with these labels." |
202 (interactive "p\nsMove to next msg with labels: ") | |
203 (if (string= labels "") | |
204 (setq labels rmail-last-multi-labels)) | |
205 (or labels | |
206 (error "No labels to find have been specified previously")) | |
37612
15fa3a1c6e88
(rmail-read-label): Be sure to work in the
Gerd Moellmann <gerd@gnu.org>
parents:
16345
diff
changeset
|
207 (set-buffer rmail-buffer) |
36 | 208 (setq rmail-last-multi-labels labels) |
209 (rmail-maybe-set-message-counters) | |
210 (let ((lastwin rmail-current-message) | |
211 (current rmail-current-message) | |
212 (regexp (concat ", ?\\(" | |
213 (mail-comma-list-regexp labels) | |
214 "\\),"))) | |
215 (save-restriction | |
216 (widen) | |
217 (while (and (> n 0) (< current rmail-total-messages)) | |
218 (setq current (1+ current)) | |
219 (if (rmail-message-labels-p current regexp) | |
220 (setq lastwin current n (1- n)))) | |
221 (while (and (< n 0) (> current 1)) | |
222 (setq current (1- current)) | |
223 (if (rmail-message-labels-p current regexp) | |
224 (setq lastwin current n (1+ n))))) | |
225 (rmail-show-message lastwin) | |
226 (if (< n 0) | |
227 (message "No previous message with labels %s" labels)) | |
228 (if (> n 0) | |
229 (message "No following message with labels %s" labels)))) | |
230 | |
231 ;;; Manipulate the file's Labels option. | |
232 | |
233 ;; Return a list of symbols for all | |
234 ;; the keywords (labels) recorded in this file's Labels option. | |
235 (defun rmail-keywords () | |
236 (or rmail-keywords (rmail-parse-file-keywords))) | |
237 | |
238 ;; Set rmail-keywords to a list of symbols for all | |
239 ;; the keywords (labels) recorded in this file's Labels option. | |
240 (defun rmail-parse-file-keywords () | |
241 (save-restriction | |
242 (save-excursion | |
243 (widen) | |
244 (goto-char 1) | |
245 (setq rmail-keywords | |
246 (if (search-forward "\nLabels:" (rmail-msgbeg 1) t) | |
247 (progn | |
248 (narrow-to-region (point) (progn (end-of-line) (point))) | |
249 (goto-char (point-min)) | |
250 (cons 'rmail-keywords | |
251 (mapcar 'rmail-force-make-label | |
252 (mail-parse-comma-list))))))))) | |
253 | |
254 ;; Add WORD to the list in the file's Labels option. | |
255 ;; Any keyword used for the first time needs this done. | |
256 (defun rmail-install-keyword (word) | |
257 (let ((keyword (rmail-make-label word t)) | |
258 (keywords (rmail-keywords))) | |
259 (if (not (or (rmail-attribute-p keyword) | |
260 (rmail-keyword-p keyword))) | |
261 (let ((omin (- (buffer-size) (point-min))) | |
262 (omax (- (buffer-size) (point-max)))) | |
263 (unwind-protect | |
264 (save-excursion | |
265 (widen) | |
266 (goto-char 1) | |
267 (let ((case-fold-search t) | |
268 (buffer-read-only nil)) | |
269 (or (search-forward "\nLabels:" nil t) | |
270 (progn | |
271 (end-of-line) | |
272 (insert "\nLabels:"))) | |
273 (delete-region (point) (progn (end-of-line) (point))) | |
274 (setcdr keywords (cons keyword (cdr keywords))) | |
275 (while (setq keywords (cdr keywords)) | |
276 (insert (symbol-name (car keywords)) ",")) | |
277 (delete-char -1))) | |
278 (narrow-to-region (- (buffer-size) omin) | |
279 (- (buffer-size) omax))))) | |
280 keyword)) | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
195
diff
changeset
|
281 |
52401 | 282 ;;; arch-tag: b26b3392-99ca-4e1d-933a-dab59b04e9a8 |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
195
diff
changeset
|
283 ;;; rmailkwd.el ends here |