From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by arlo.cworth.org (Postfix) with ESMTP id 066A26DE035A for ; Sun, 10 Sep 2017 21:31:02 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at cworth.org X-Spam-Flag: NO X-Spam-Score: -0.112 X-Spam-Level: X-Spam-Status: No, score=-0.112 tagged_above=-999 required=5 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_RP_MATCHES_RCVD=-0.01] autolearn=disabled Received: from arlo.cworth.org ([127.0.0.1]) by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id oXn_vGfdKFh1 for ; Sun, 10 Sep 2017 21:31:00 -0700 (PDT) X-Greylist: delayed 545 seconds by postgrey-1.36 at arlo; Sun, 10 Sep 2017 21:31:00 PDT Received: from cock.li (cock.li [185.100.85.212]) by arlo.cworth.org (Postfix) with ESMTPS id 515746DE0222 for ; Sun, 10 Sep 2017 21:31:00 -0700 (PDT) From: Attic Hermit DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=cock.li; s=mail; t=1505103704; bh=THqNm35Irkn1qVKPCWdEWVYvqcVNZ/s9qKIoVOPfY+4=; h=From:To:Subject:Date:From; b=o5HvrtM1yKlCXjpqkIb0wyUztFlkjJVbKwLA3zYOmnNakUE+b4c3Wjg3cH+VPB3RD ICIwwVXuv7gS5DWMPz5iR5vlEAjaTXPg5rPhbG7rlQh0Ut+RlIHsNOihVInipiSSdu ffHL0NvPw9vY3he0DxM8XAUqZvZ0s5l7zfJJi7U0HGOy9eNckGv7t7OUD4Xn5l/Fux BJEHdumt8d82Rc4M+LBwc0I5ueDf4uOc7lcwcQCVuQ9Zu/KfWUCkipaROpJWMmIM7+ 5jqspa9PkCjFt86s+vFS7v4icsABdpYfCXKvZi0s9522NrBVCRRBJuiIqasrqY8G2Q SvkcowtoANfnw== To: notmuch@notmuchmail.org Subject: [BUG] Notmuch keeps adding notmuch-address-expand-name to message-completion-alist Date: Mon, 11 Sep 2017 13:21:30 +0900 Message-ID: <8760cpn9v9.fsf@no_dom.tld> MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Sep 2017 04:31:02 -0000 When I invocate compose-mail or something related with the message-mode buffer and Notmuch, Notmuch keeps adding a pair like below to `message-completion-alist`: ("^\\(Resent-\\)?\\(To\\|B?Cc\\|Reply-To\\|From\\|Mail-Followup-To\\|Mail-Copies-To\\):" . notmuch-address-expand-name) I think there's bug in `notmuch-address-setup` on `notmuch-address.el`. It checks that the pair exists in the `message-completion-alist` by `memq`, but it seems to be amended to `member` instead. P.S. Because I'm not a programming expert or a student, I don't know how to send a patch to amend this problem. So I send where the bug was found and the way how I tinkered it in English. I searched the file where bug exists in the git repository of Notmuch, and found that there still was a bug. I hope this will help to fix the bug. -- Attic Hermit