From 6c192b5f8369734c53a73a74841c1e1ebd9a2063 Mon Sep 17 00:00:00 2001 From: yamaoka Date: Wed, 9 Jun 2004 11:43:23 +0000 Subject: [PATCH] Synch to No Gnus 200406091142. --- lisp/ChangeLog | 9 +++++++++ lisp/gnus-ems.el | 19 ++++++++++++------- lisp/message.el | 54 +++++++++++++++++++++++++++++++++--------------------- 3 files changed, 54 insertions(+), 28 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4dd141d..aef7ae1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,12 @@ +2004-06-09 Katsumi Yamaoka + + * message.el (message-text-with-property): Make it fast and accept + optional arguments. + (message-strip-forbidden-properties): Use it. + (message-fix-before-sending): Follow the m-t-w-p change. + + * gnus-ems.el (gnus-remove-image): Follow the m-t-w-p change. + 2004-06-08 Katsumi Yamaoka * gnus-art.el (article-hide-headers): Don't change the buffer diff --git a/lisp/gnus-ems.el b/lisp/gnus-ems.el index fe83ccf..5ea1f4f 100644 --- a/lisp/gnus-ems.el +++ b/lisp/gnus-ems.el @@ -230,13 +230,18 @@ glyph)) (defun gnus-remove-image (image &optional category) - (dolist (position (message-text-with-property 'display)) - (when (and (equal (get-text-property position 'display) image) - (equal (get-text-property position 'gnus-image-category) - category)) - (put-text-property position (1+ position) 'display nil) - (when (get-text-property position 'gnus-image-text-deletable) - (delete-region position (1+ position)))))) + (let ((regions (message-text-with-property 'display)) + start end) + (while regions + (setq start (caar regions) + end (cdar regions) + regions (cdr regions)) + (when (and (equal (get-text-property start 'display) image) + (equal (get-text-property start 'gnus-image-category) + category)) + (put-text-property start end 'display nil) + (when (get-text-property start 'gnus-image-text-deletable) + (delete-region start end)))))) (defun-maybe assoc-ignore-case (key alist) "Like `assoc', but assumes KEY is a string and ignores case when comparing." diff --git a/lisp/message.el b/lisp/message.el index f28daaf..6b02c3b 100644 --- a/lisp/message.el +++ b/lisp/message.el @@ -2623,11 +2623,10 @@ See also `message-forbidden-properties'." (message-tamago-not-in-use-p begin) ;; Check whether the invisible MIME part is not inserted. (not (text-property-any begin end 'mime-edit-invisible t))) - (while (not (= begin end)) - (when (not (get-text-property begin 'message-hidden)) - (remove-text-properties begin (1+ begin) - message-forbidden-properties)) - (incf begin)))) + (dolist (from-to (message-text-with-property 'message-hidden + begin end t)) + (remove-text-properties (car from-to) (cdr from-to) + message-forbidden-properties)))) ;;;###autoload (define-derived-mode message-mode text-mode "Message" @@ -3908,16 +3907,32 @@ used to distinguish whether the invisible text is a MIME part or not." '(invisible t mime-edit-invisible t)) (put-text-property start end 'invisible t)))))) -(defun message-text-with-property (prop) - "Return a list of all points where the text has PROP." - (let ((points nil) - (point (point-min))) - (save-excursion - (while (< point (point-max)) - (when (get-text-property point prop) - (push point points)) - (incf point))) - (nreverse points))) +(defun message-text-with-property (prop &optional start end reverse) + "Return a list of start and end positions where the text has PROP. +START and END bound the search, they default to `point-min' and +`point-max' respectively. If REVERSE is non-nil, find text which does +not have PROP." + (unless start + (setq start (point-min))) + (unless end + (setq end (point-max))) + (let (next regions) + (if reverse + (progn + (while (and start + (setq start (text-property-any start end prop nil))) + (setq next (next-single-property-change start prop nil end)) + (push (cons start (or next end)) regions) + (setq start next))) + (while (and start + (or (get-text-property start prop) + (and (setq start (next-single-property-change + start prop nil end)) + (get-text-property start prop)))) + (setq next (text-property-any start end prop nil)) + (push (cons start (or next end)) regions) + (setq start next))) + (nreverse regions))) (defun message-fix-before-sending () "Do various things to make the message nice before sending it." @@ -3927,12 +3942,9 @@ used to distinguish whether the invisible text is a MIME part or not." (unless (bolp) (insert "\n")) ;; Make the hidden headers visible. - (let ((points (message-text-with-property 'message-hidden))) - (when points - (goto-char (car points)) - (dolist (point points) - (add-text-properties point (1+ point) - '(invisible nil intangible nil))))) + (dolist (from-to (message-text-with-property 'message-hidden)) + (add-text-properties (car from-to) (cdr from-to) + '(invisible nil intangible nil))) ;; Make invisible text visible except for mime parts which may be ;; inserted by the MIME-Edit. ;; It doesn't seem as if this is useful, since the invisible property -- 1.7.10.4