Index: message.el =================================================================== RCS file: /usr/local/cvsroot/gnus/lisp/message.el,v retrieving revision 6.306 diff -u -r6.306 message.el --- message.el 23 Feb 2003 13:39:47 -0000 6.306 +++ message.el 25 Feb 2003 21:10:13 -0000 @@ -488,8 +488,9 @@ :type 'regexp) (defcustom message-cite-prefix-regexp +(setq message-cite-prefix-regexp (if (string-match "[[:digit:]]" "1") ;; support POSIX? - "\\([ \t]*[-_.[:word:]]+>+\\|[ \t]*[]>|}+]\\)+" + "\\([ \t]*[-_.[:word:]]+>+\\|[ \t]*[]>|:#}+]\\)+" ;; ?-, ?_ or ?. MUST NOT be in syntax entry w. (let ((old-table (syntax-table)) non-word-constituents) @@ -504,7 +505,7 @@ "\\([ \t]*\\(\\w\\)+>+\\|[ \t]*[]>|}+]\\)+" (concat "\\([ \t]*\\(\\w\\|[" non-word-constituents - "]\\)+>+\\|[ \t]*[]>|}+]\\)+")))) + "]\\)+>+\\|[ \t]*[]>|:#}+]\\)+")))) "*Regexp matching the longest possible citation prefix on a line." :group 'message-insertion :type 'regexp)