Brep <[EMAIL PROTECTED]> writes: > Hadron <[EMAIL PROTECTED]> writes: > >> Tassilo Horn <[EMAIL PROTECTED]> writes: >> >>> Hadron <[EMAIL PROTECTED]> writes: >>> >>> Hi Hadron, >>> >>>> What am I doing wrong here? >>> >>> As I said in a previous posting: >>> >>> You can but you have to understand backquoting, see >>> (info "(elisp)Backquote"). >>> >>>> (setq gnus-posting-styles >>>> '(,(rx (or "linux" "emacs")) > `(,(rx (or "linux" "emacs")) > backquote here. >>>> (address "[EMAIL PROTECTED]")) >>>> ) >>>> >>>> Doesn't match either groups containing emacs or linux. >>> >>> Yes, because the rx form won't be expanded. >> >> The form is the code you gave to me in an earlier post and reading the >> text the "," should be backquoting it? Clearly I am missing something >> obvious?
Thanks Brep. ,---- | (setq gnus-posting-styles | `( | ( | ,(rx(or "linux" "emacs")) | (name "Hadron")(address "[EMAIL PROTECTED]") | ) | ) | ) `---- was the solution. _______________________________________________ info-gnus-english mailing list [email protected] http://lists.gnu.org/mailman/listinfo/info-gnus-english
