From: yamaoka Date: Thu, 8 Mar 2001 22:15:40 +0000 (+0000) Subject: Synch with Oort Gnus. X-Git-Tag: t-gnus-6_15_0-10-quimby~21 X-Git-Url: http://git.chise.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=64817bc948c1645d76478984c7a331a7dc90dc4a;p=elisp%2Fgnus.git- Synch with Oort Gnus. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 03313c9..2824676 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2001-03-08 02:41:36 Katsumi Yamaoka + Committed by ShengHuo ZHU + + * rfc2047.el (rfc2047-unfold-region): Fix arg of + `skip-chars-forward'. + 2001-03-07 13:00:00 ShengHuo ZHU * nndraft.el (nndraft-request-group): Restore auto save files if diff --git a/lisp/rfc2047.el b/lisp/rfc2047.el index 8214e20..a14ef2c 100644 --- a/lisp/rfc2047.el +++ b/lisp/rfc2047.el @@ -386,7 +386,7 @@ The buffer may be narrowed." (progn (goto-char eol) (delete-region eol (progn - (skip-chars-forward "[ \t\n\r]+") + (skip-chars-forward " \t\n\r") (1- (point))))) (setq bol (gnus-point-at-bol))) (setq eol (gnus-point-at-eol))