From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-2.1 required=5.0 tests=DKIM_INVALID,DKIM_SIGNED, FREEMAIL_FROM,RCVD_IN_DNSWL_MED,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 29592 invoked from network); 1 Feb 2023 21:22:46 -0000 Received: from mx1.math.uh.edu (129.7.128.32) by inbox.vuxu.org with ESMTPUTF8; 1 Feb 2023 21:22:46 -0000 Received: from lists1.math.uh.edu ([129.7.128.208]) by mx1.math.uh.edu with esmtps (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1pNKZ1-003Z4Q-6Q for ml@inbox.vuxu.org; Wed, 01 Feb 2023 15:22:43 -0600 Received: from lists1.math.uh.edu ([127.0.0.1] helo=lists.math.uh.edu) by lists1.math.uh.edu with smtp (Exim 4.96) (envelope-from ) id 1pNKZ0-0065zp-1U for ml@inbox.vuxu.org; Wed, 01 Feb 2023 15:22:42 -0600 Received: from mx1.math.uh.edu ([129.7.128.32]) by lists1.math.uh.edu with esmtp (Exim 4.96) (envelope-from ) id 1pNKYt-0065yj-1U for ding@lists.math.uh.edu; Wed, 01 Feb 2023 15:22:35 -0600 Received: from quimby.gnus.org ([95.216.78.240]) by mx1.math.uh.edu with esmtps (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1pMq1t-002hF9-2O for ding@lists.math.uh.edu; Tue, 31 Jan 2023 06:46:31 -0600 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:Mime-Version:References:Message-ID:Date:Subject: From:To:Sender:Reply-To:Cc:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=jsMIB5RuFOFiCpaLtf+ds/A2YSIRRlflwd5GLKB0eJA=; b=bZTso8G9EYq1XzjxnBrH4L+KX2 TgoSNuyz5xk6L0xHjiCY4n9jIFFhSLsJ4nWiMqpm0LlKHDqb4/pktgTOF61yyVvfYQEQfy0+Zdgih 7cS59iUSFH+GrRjrBEaBmCM8UptJwTyEEQUhrn6GWcTQ2codKCV4+bZElEaR7D3m8zgQ=; Received: from ciao.gmane.io ([116.202.254.214]) by quimby.gnus.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1pMq1i-0003SS-0M for ding@gnus.org; Tue, 31 Jan 2023 13:46:23 +0100 Received: from list by ciao.gmane.io with local (Exim 4.92) (envelope-from ) id 1pMq1f-0000ID-B8 for ding@gnus.org; Tue, 31 Jan 2023 13:46:15 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: ding@gnus.org From: Julien Cubizolles Subject: Re: completion no more working with latest HEADs (emacs and bbdb) Date: Tue, 31 Jan 2023 13:46:05 +0100 Message-ID: <878rhieusy.fsf@free.fr> References: <87r0y42vnh.fsf@a16n.net> <86edu3ibkp.fsf@gnu.org> <87leobgucs.fsf@a16n.net> <867czvi8d8.fsf@gnu.org> <87zgcrp63k.fsf@a16n.net> <86edu3m8fb.fsf@gnu.org> <87ilgx8uh1.fsf@free.fr> <867cxdny73.fsf@gnu.org> <86k01dtgw6.fsf@gnu.org> <87y1pszvvn.fsf@free.fr> <86r0vk3y7x.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain User-Agent: Gnus/5.13 (Gnus v5.13) Cancel-Lock: sha1:4Yc4wgyzwmGFd+hjTKAuGVo77WY= List-ID: Precedence: bulk Arash Esbati writes: > (setq eudc-server-hotlist '(("localhost" . bbdb))) > > (add-hook 'message-mode-hook > (lambda () > (setq-local completion-at-point-functions > (delq 'message-completion-function > completion-at-point-functions)) > (add-to-list 'completion-at-point-functions > #'eudc-capf-complete))) I noticed that this setup, while working for bbdb completions in the To: field, breaks it for completing groups in the Gcc: field. I get both completions working with: --8<---------------cut here---------------start------------->8--- (add-hook 'message-mode-hook (lambda () (add-to-list 'completion-at-point-functions #'eudc-capf-complete))) --8<---------------cut here---------------end--------------->8--- -- Julien Cubizolles