::::: In <[EMAIL PROTECTED]> poppyer wrote:

:        I have just upgrade to gnus 5.11, where I found that the lines
: started with ":" is not recognized as citations. And I can not find the
: gnus-cite-prefix-regexp to customize. Any idea?

For Gnus v5.11 `message-cite-prefix-regexp' is what you look for.
If you use Emacs, not XEmacs, this will work:

(setq message-cite-prefix-regexp
      "\\([ \t]*[-_.[:word:]]+>+\\|[ \t]*[]>|}+:]\\)+")

If you want this variable not to be modified globally, use this:

(defadvice gnus-cite-parse (around recognize-colon-as-citation
                                   activate)
  "Recognize lines started with `:' as citations."
  (let ((message-cite-prefix-regexp
         "\\([ \t]*[-_.[:word:]]+>+\\|[ \t]*[]>|}+:]\\)+"))
    ad-do-it))
_______________________________________________
info-gnus-english mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/info-gnus-english

Reply via email to