From: yamaoka Date: Thu, 1 May 2003 07:47:12 +0000 (+0000) Subject: Synch to Oort Gnus 200305010748. X-Git-Tag: t-gnus-6_15_21-00-quimby~3 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=9e2fef7a10172ee869ebc40eef920dc44f3afb74;p=elisp%2Fgnus.git- Synch to Oort Gnus 200305010748. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b677f04..20b6b43 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,10 @@ +2003-05-01 Lars Magne Ingebrigtsen + + * message.el (message-check-news-header-syntax): Alter "posting" + message. + + * nnrss.el (nnrss-node-text): Don't use char classes. + 2003-05-01 David Z. Maze * nnrss.el (nnrss-find-rss-via-syndic8): Have an `error' branch diff --git a/lisp/message.el b/lisp/message.el index a13c97a..25355f8 100644 --- a/lisp/message.el +++ b/lisp/message.el @@ -4564,7 +4564,7 @@ Otherwise, generate and save a value for `canlock-password' first." errors) (y-or-n-p (format - "Really post to %s possibly unknown group%s: %s? " + "Really use %s possibly unknown group%s: %s? " (if (= (length errors) 1) "this" "these") (if (= (length errors) 1) "" "s") (mapconcat 'identity errors ", ")))) diff --git a/lisp/nnrss.el b/lisp/nnrss.el index a1be64f..6fb8e43 100644 --- a/lisp/nnrss.el +++ b/lisp/nnrss.el @@ -525,7 +525,7 @@ It is useful when `(setq nnrss-use-local t)'." (nnrss-node-just-text node) node)) (cleaned-text (if text (gnus-replace-in-string - text "^[[:cntrl:]]+\\|^ +\\| +$" "")))) + text "^[\000-\037\177]+\\|^ +\\| +$" "")))) (if (string-equal "" cleaned-text) nil cleaned-text)))