diff options
| author | Andre Bianchi <drebs@riseup.net> | 2019-07-03 17:03:19 -0300 |
|---|---|---|
| committer | Andre Bianchi <drebs@riseup.net> | 2019-07-03 17:06:00 -0300 |
| commit | adcaf62cac3145f58c4bc1deced508e297046106 (patch) | |
| tree | da1d1d7e1cdbd67c8ee63db0ba1ff65a0817e5b1 | |
| parent | 6d2176cbea01b20ffb17b06ed023f41bc959dabc (diff) | |
fix parenthesis in gnus-alias identity rules definition
| -rw-r--r-- | emacstips.mdwn | 4 |
1 files 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) |
