From adcaf62cac3145f58c4bc1deced508e297046106 Mon Sep 17 00:00:00 2001 From: Andre Bianchi Date: Wed, 3 Jul 2019 17:03:19 -0300 Subject: [PATCH] fix parenthesis in gnus-alias identity rules definition --- emacstips.mdwn | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/emacstips.mdwn b/emacstips.mdwn index 2269cb7..cfbcd3b 100644 --- a/emacstips.mdwn +++ b/emacstips.mdwn @@ -583,8 +583,8 @@ Here is an example configuration. ;; Use "home" identity by default (setq gnus-alias-default-identity "home") ;; Define rules to match work identity - (setq gnus-alias-identity-rules) - '(("work" ("any" "john.doe@\\(example\\.com\\|help\\.example.com\\)" both) "work")) + (setq gnus-alias-identity-rules + '(("work" ("any" "john.doe@\\(example\\.com\\|help\\.example.com\\)" both) "work"))) ;; Determine identity when message-mode loads (add-hook 'message-setup-hook 'gnus-alias-determine-identity) -- 2.43.0