From: Daiki Ueno Date: Mon, 27 Oct 2003 13:18:00 +0000 (+0000) Subject: * riece-keyword.el (riece-keywords): Change custom spec. X-Git-Url: https://cgit.sxemacs.org/?p=riece;a=commitdiff_plain;h=f757360f3aa7d0a47658a91d5b7bde4e30fb72ba * riece-keyword.el (riece-keywords): Change custom spec. (riece-keyword-message-filter): Normalize riece-keywords. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 911d649..ecf1f19 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2003-10-27 Daiki Ueno + * riece-keyword.el (riece-keywords): Change custom spec. + (riece-keyword-message-filter): Normalize riece-keywords. + * riece-identity.el (riece-identity-prefix-case-table): Use riece-copy-case-table to define. diff --git a/lisp/riece-keyword.el b/lisp/riece-keyword.el index 1e1e3b8..b0b0952 100644 --- a/lisp/riece-keyword.el +++ b/lisp/riece-keyword.el @@ -37,7 +37,9 @@ (defcustom riece-keywords nil "Keywords to be highlightened." - :type '(repeat string) + :type '(repeat (choice (string :tag "Keyword") + (cons (string :tag "Regexp") + (integer :tag "Match")))) :group 'riece-keyword) (defcustom riece-notify-keyword-functions nil @@ -60,17 +62,33 @@ (if (and riece-keywords ;; Ignore messages which belongs to myself. (not (riece-message-own-p message))) - (let ((regexp (regexp-opt riece-keywords)) - (index 0)) - (while (string-match regexp (riece-message-text message) index) - (if (memq 'riece-highlight riece-addons) - (put-text-property (match-beginning 0) (match-end 0) - 'riece-keyword t - (riece-message-text message))) - (save-match-data - (run-hook-with-args 'riece-notify-keyword-functions - (match-string 0 (riece-message-text message)))) - (setq index (match-end 0))))) + (let* (keywords + (alist + (nconc + (delq nil (mapcar + (lambda (matcher) + (if (stringp matcher) + (ignore + (setq keywords (cons matcher keywords))) + matcher)) + riece-keywords)) + (list (cons (regexp-opt keywords) 0)))) + index) + (while alist + (setq index 0) + (while (string-match (car (car alist)) + (riece-message-text message) index) + (if (memq 'riece-highlight riece-addons) + (put-text-property (match-beginning (cdr (car alist))) + (match-end (cdr (car alist))) + 'riece-keyword t + (riece-message-text message))) + (save-match-data + (run-hook-with-args 'riece-notify-keyword-functions + (match-string (cdr (car alist)) + (riece-message-text message)))) + (setq index (match-end (cdr (car alist))))) + (setq alist (cdr alist))))) message) (defun riece-keyword-scan-region (start end)