+2002-03-21 ShengHuo ZHU <zsh@cs.rochester.edu>
+
+ * message.el (message-fix-before-sending): Add an option that
+ ignores illegible text.
+ Trivial change from Mark Milhollan <mlm@attglobal.net>
+
+ * message.el (message-font-lock-keywords): Support multi-line MML
+ tags.
+
+ * gnus-sum.el (gnus-print-buffer): Remove gnus-decoration.
+ Trivial change from lorentey@elte.hu (L\e,Bu\e(Brentey K\e,Ba\e(Broly)
+
2002-03-20 Katsumi Yamaoka <yamaoka@jpl.org>
* gnus-sum.el (gnus-summary-make-menu-bar): Use intern'ed function
duplication.
(gnus-summary-save-parts-type-history): Ditto.
(gnus-summary-save-parts-last-directory): Ditto.
- From: andre@slamdunknetworks.com
+ Trivial change from andre@slamdunknetworks.com
2002-03-09 Paul Jarc <prj@po.cwru.edu
* message.el (message-mode): If buffer-file-name, don't set auto
save file name.
- From Geoff Greene <ggreene@wpi.edu>
+ Trivial change from Geoff Greene <ggreene@wpi.edu>
2002-03-02 ShengHuo ZHU <zsh@cs.rochester.edu>
(copy-to-buffer buffer (point-min) (point-max))
(set-buffer buffer)
(gnus-article-delete-invisible-text)
+ (gnus-remove-text-with-property 'gnus-decoration)
(when (gnus-visual-p 'article-highlight 'highlight)
;; Copy-to-buffer doesn't copy overlay. So redo
;; highlight.
"Illegible text found. Continue posting? "
'((?d "Remove and continue posting")
(?r "Replace with dots and continue posting")
+ (?i "Ignore and continue posting")
(?e "Continue editing"))))
(if (eq choice ?e)
(error "Illegible text found"))
(memq (char-charset char)
'(eight-bit-control eight-bit-graphic
control-1)))))
- (delete-char 1)
- (if (eq choice ?r)
- (insert ".")))
+ (if (eq choice ?i)
+ (remove-text-properties (point) (1+ (point)) '(highlight t))
+ (delete-char 1)
+ (if (eq choice ?r)
+ (insert "."))))
(forward-char)
(skip-chars-forward mm-7bit-chars))))))
+2002-03-21 ShengHuo ZHU <zsh@cs.rochester.edu>
+
+ * message.texi (Sending Variables): Fix typo.
+ Trivial change from Raymond Scholz <rscholz@zonix.de>
+
2002-03-09 ShengHuo ZHU <zsh@cs.rochester.edu>
* gnus.texi (Other Marks): Remove duplication.
- From: David Aspinwall <aspinwall@timesten.com>
+ Trivial change from David Aspinwall <aspinwall@timesten.com>
2002-03-09 Paul Jarc <prj@po.cwru.edu>
been posted to %s as well.\n\n"} \e$B$G$9!#\e(B
@c @item message-fcc-externalize-attachments
-@c @vindex message-gcc-externalize-attachments
+@c @vindex message-fcc-externalize-attachments
@c If @code{nil}, attach files as normal parts in Fcc copies; if it is
@c non-@code{nil}, attach local files as external parts.
@end table
an article\\nthat has been posted to %s as well.\\n\\n"}.
@item message-fcc-externalize-attachments
-@vindex message-gcc-externalize-attachments
+@vindex message-fcc-externalize-attachments
If @code{nil}, attach files as normal parts in Fcc copies; if it is
non-@code{nil}, attach local files as external parts.