Mercurial > emacs
view lisp/mail/rmailkwd.el @ 88172:7bba2fede2be
(rmail-summary-font-lock-keywords): Fix typo for
labels.
(rmail-summary-get-summary): Add labels again.
author | Alex Schroeder <alex@gnu.org> |
---|---|
date | Mon, 16 Jan 2006 23:09:30 +0000 |
parents | d7ddb3e565de |
children | b6b65e7ea49f |
line wrap: on
line source
;;; rmailkwd.el --- part of the "RMAIL" mail reader for Emacs ;; Copyright (C) 1985, 1988, 1994, 2001, 2002, 2003, 2004, ;; 2005 Free Software Foundation, Inc. ;; Maintainer: FSF ;; Keywords: mail ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation; either version 2, or (at your option) ;; any later version. ;; GNU Emacs is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License ;; along with GNU Emacs; see the file COPYING. If not, write to the ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ;; Boston, MA 02110-1301, USA. ;;; Commentary: ;; This library manages keywords (labels). Labels are stored in the ;; variable `rmail-keywords'. ;;; Code: (defvar rmail-buffer) (defvar rmail-current-message) (defvar rmail-last-label) (defvar rmail-last-multi-labels) (defvar rmail-summary-vector) (defvar rmail-total-messages) ;; Global to all RMAIL buffers. It exists primarily for the sake of ;; completion. It is better to use strings with the label functions ;; and let them worry about making the label. (provide 'rmailkwd) (eval-when-compile (require 'mail-utils) (require 'rmail)) (defvar rmail-label-obarray (make-vector 47 0)) ;; Named list of symbols representing valid message attributes in RMAIL. (defconst rmail-attributes (cons 'rmail-keywords (mapcar (function (lambda (s) (intern s rmail-label-obarray))) '("deleted" "answered" "filed" "forwarded" "unseen" "edited" "resent")))) (defconst rmail-deleted-label (intern "deleted" rmail-label-obarray)) ;; Named list of symbols representing valid message keywords in RMAIL. (defvar rmail-keywords) ;;;; Low-level functions. ;; Return a list of symbols for all the keywords (labels) recorded in ;; this file's Labels. (defun rmail-keywords () "Return a list of all known keywords." (or rmail-keywords (rmail-keyword-init))) (defun rmail-keyword-init () "Initialize the variable `rmail-keywords' to hold no keywords. The value is actually (nil), since (cdr rmail-keywords) is the actual list of keywords." (setq rmail-keywords (cons 'rmail-keywords nil))) (defun rmail-attribute-p (s) (let ((symbol (rmail-make-label s))) (if (memq symbol (cdr rmail-attributes)) symbol))) (defun rmail-keyword-p (s) "Non-nil if S is a known keyword for this Rmail file." (let ((symbol (rmail-make-label s))) (if (memq symbol (cdr (rmail-keywords))) symbol))) (defun rmail-make-label (s &optional forcep) (cond ((symbolp s) s) (forcep (intern (downcase s) rmail-label-obarray)) (t (intern-soft (downcase s) rmail-label-obarray)))) ;;; (defun rmail-force-make-label (s) ;;; (intern (downcase s) rmail-label-obarray)) (defun rmail-quote-label-name (label) (regexp-quote (symbol-name (rmail-make-label label t)))) ;;;###autoload (defun rmail-keyword-register-keywords (keyword-list) "Add the strings in KEYWORD-LIST to `rmail-keywords'. Return a list of the keywords newly added (those that were not already known)." (delq nil (mapcar 'rmail-install-keyword keyword-list))) ;;; mbox: ready ;; Add WORD to the list in the file's Labels option. ;; Any keyword used for the first time needs this done. (defun rmail-install-keyword (word) "Append WORD to the global list of keywords. Ignore duplicates. Return WORD if it is a new entry, nil otherwise." (let ((keyword (rmail-make-label word t)) (keywords (rmail-keywords))) (if (not (or (rmail-attribute-p keyword) (rmail-keyword-p keyword))) (progn (setcdr keywords (cons keyword (cdr keywords))) keyword)))) ;;;; Adding and removing message keywords. ;;;###autoload (defun rmail-add-label (string) "Add LABEL to labels associated with current RMAIL message. Completion is performed over known labels when reading." (interactive (list (rmail-read-label "Add label"))) (rmail-set-label string t) (rmail-display-labels)) ;;;###autoload (defun rmail-kill-label (string) "Remove LABEL from labels associated with current RMAIL message. Completion is performed over known labels when reading." (interactive (list (rmail-read-label "Remove label"))) (rmail-set-label string nil)) ;;; mbox: ready to define and execute test ;;;###autoload (defun rmail-read-label (prompt) (if (= rmail-total-messages 0) (error "No messages in this file")) (with-current-buffer rmail-buffer (let ((result (completing-read (concat prompt (if rmail-last-label (concat " (default " (symbol-name rmail-last-label) "): ") ": ")) rmail-label-obarray nil nil))) (if (string= result "") rmail-last-label (setq rmail-last-label (rmail-make-label result t)))))) ;;; mbox: ready (defun rmail-set-label (l state &optional n) "Add (STATE is non-nil) or remove (STATE is nil) label L in message N. If N is nil then use the current Rmail message. The current buffer, possibly narrowed, displays a message." (if (= rmail-total-messages 0) (error "No messages in this file")) (with-current-buffer rmail-buffer (if (not n) (setq n rmail-current-message)) ;; Make message N the current message. (save-restriction (widen) (narrow-to-region (rmail-desc-get-start n) (rmail-desc-get-end n)) (if (rmail-attribute-p l) ;; Handle the case where the label is one of the predefined ;; attributes by using rmail code to set the attribute. (rmail-set-attribute l state n) ;; Handle the case where the label is a keyword. Make sure the ;; keyword is registered. (or (rmail-keyword-p l) (rmail-install-keyword l)) ;; Determine if we are adding or removing the keyword. (let ((keyword (symbol-name l))) (if state ;; Add the keyword to this message. (rmail-desc-add-keyword keyword n) ;; Remove the keyword from the keyword header. (rmail-desc-remove-keyword keyword n))))))) ;; Motion on messages with keywords. ;;;###autoload (defun rmail-previous-labeled-message (n labels) "Show previous message with one of the labels LABELS. LABELS should be a comma-separated list of label names. If LABELS is empty, the last set of labels specified is used. With prefix argument N moves backward N messages with these labels." (interactive "p\nsMove to previous msg with labels: ") (rmail-next-labeled-message (- n) labels)) ;;;###autoload (defun rmail-next-labeled-message (n labels) "Show next message with one of the labels LABELS. LABELS should be a comma-separated list of label names. If LABELS is empty, the last set of labels specified is used. With prefix argument N moves forward N messages with these labels." (interactive "p\nsMove to next msg with labels: ") (if (string= labels "") (setq labels rmail-last-multi-labels)) (or labels (error "No labels to find have been specified previously")) (set-buffer rmail-buffer) (setq rmail-last-multi-labels labels) (rmail-maybe-set-message-counters) (let ((lastwin rmail-current-message) (current rmail-current-message) (regexp (concat ", ?\\(" (mail-comma-list-regexp labels) "\\),"))) (save-restriction (widen) (while (and (> n 0) (< current rmail-total-messages)) (setq current (1+ current)) (if (rmail-message-labels-p current regexp) (setq lastwin current n (1- n)))) (while (and (< n 0) (> current 1)) (setq current (1- current)) (if (rmail-message-labels-p current regexp) (setq lastwin current n (1+ n))))) (rmail-show-message lastwin) (if (< n 0) (message "No previous message with labels %s" labels)) (if (> n 0) (message "No following message with labels %s" labels)))) ;;; arch-tag: b26b3392-99ca-4e1d-933a-dab59b04e9a8 ;;; rmailkwd.el ends here