mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-22 07:09:54 +00:00
* doc/misc/gnus.texi (Loose Threads): Use regexp-opt in example.
This commit is contained in:
parent
9f041cdfac
commit
1cd1b2835b
@ -7130,20 +7130,15 @@ as 10, you might consider setting this variable to something sensible:
|
||||
(setq gnus-simplify-ignored-prefixes
|
||||
(concat
|
||||
"\\`\\[?\\("
|
||||
(mapconcat
|
||||
'identity
|
||||
'("looking"
|
||||
"wanted" "followup" "summary\\( of\\)?"
|
||||
"help" "query" "problem" "question"
|
||||
"answer" "reference" "announce"
|
||||
"How can I" "How to" "Comparison of"
|
||||
;; ...
|
||||
)
|
||||
"\\|")
|
||||
(regexp-opt '("looking"
|
||||
"wanted" "followup" "summary" "summary of"
|
||||
"help" "query" "problem" "question"
|
||||
"answer" "reference" "announce"
|
||||
"How can I" "How to" "Comparison of"
|
||||
;; ...
|
||||
))
|
||||
"\\)\\s *\\("
|
||||
(mapconcat 'identity
|
||||
'("for" "for reference" "with" "about")
|
||||
"\\|")
|
||||
(regexp-opt '("for" "for reference" "with" "about"))
|
||||
"\\)?\\]?:?[ \t]*"))
|
||||
@end lisp
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user