From 315bee32eff8a24bbd9616b724f81aee881d9b1e Mon Sep 17 00:00:00 2001 From: tfheen Date: Wed, 16 Apr 2008 07:57:12 +0000 Subject: [PATCH] Fix up string-match synatx, it is (string-atch regexp string), not the other way around git-svn-id: file:///svn/tfheen/trunk/dotfiles@1211 8da78d58-1cd3-0310-bee5-d77bd1b3e8bf --- gnus | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnus b/gnus index cf83dc1..983833f 100644 --- a/gnus +++ b/gnus @@ -366,10 +366,10 @@ inserts \" characters." '( ; Default-verdier (".*" - (address (if (string-match system-name "luxevop") "tfheen@linpro.no" "tfheen@err.no")) + (address (if (string-match "luxevop" system-name) "tfheen@linpro.no" "tfheen@err.no")) ; (Organization "Private") - (Bcc (if (string-match system-name "luxevop") + (Bcc (if (string-match "luxevop" system-name) (concat "tfheen+outgoing" (char-to-string 64) "linpro.no") (concat "tfheen+outgoing" (char-to-string 64) "err.no"))) -- 2.39.5