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