From: keiichi Date: Thu, 9 Jul 1998 10:12:26 +0000 (+0000) Subject: Fix problem when multi bytes charactors are used in cite prefix. X-Git-Tag: gnus-6_8_1~6 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=69ee38fae885cc3841eeac3ceaa58832f71d503b;p=elisp%2Fgnus.git- Fix problem when multi bytes charactors are used in cite prefix. --- diff --git a/lisp/gnus-cite.el b/lisp/gnus-cite.el index 5dd0f89..2568195 100644 --- a/lisp/gnus-cite.el +++ b/lisp/gnus-cite.el @@ -869,7 +869,7 @@ See also the documentation for `gnus-article-highlight-citation'." from to overlay) (goto-line number) (unless (eobp) ; Sometimes things become confused. - (forward-char (length prefix)) + (goto-char (+ (point) (length prefix))) (skip-chars-forward " \t") (setq from (point)) (end-of-line 1)