unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#53430: 28.0.91; eudc-expand-inline fails in BBDB backend with void records variable
@ 2022-01-21 23:08 Thomas Fitzsimmons
  2022-01-22  6:35 ` Eli Zaretskii
  0 siblings, 1 reply; 3+ messages in thread
From: Thomas Fitzsimmons @ 2022-01-21 23:08 UTC (permalink / raw)
  To: 53430

[-- Attachment #1: Type: text/plain, Size: 546 bytes --]

Hi,

I updated to the emacs-28 branch recently.  When I first tried to
complete an e-mail address using eudc-expand-inline I saw this error:

    Symbol's value as variable is void: records

It turned out to be a quoting issue in eudc-bbdb-query-internal in the
EUDC BBDB backend.  It looks like this was introduced by the change to
lexical-binding.  The attached patch fixes the issue (though, the
quoting that works now is different from what was there before the
lexical-binding change).

Does it look OK to push to emacs-28?

Thanks,
Thomas


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-EUDC-Fix-a-quoting-bug-in-the-BBDB-backend.patch --]
[-- Type: text/x-diff, Size: 1053 bytes --]

From e58ecd01d51471e7e63d20ee059a5c26251220b7 Mon Sep 17 00:00:00 2001
From: Thomas Fitzsimmons <fitzsim@fitzsim.org>
Date: Fri, 21 Jan 2022 17:40:57 -0500
Subject: [PATCH] EUDC: Fix a quoting bug in the BBDB backend

* lisp/net/eudcb-bbdb.el (eudc-bbdb-query-internal): Fix a quoting
bug introduced during lexical-binding conversion.
---
 lisp/net/eudcb-bbdb.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/net/eudcb-bbdb.el b/lisp/net/eudcb-bbdb.el
index 60a3adbc34..e71dc238d0 100644
--- a/lisp/net/eudcb-bbdb.el
+++ b/lisp/net/eudcb-bbdb.el
@@ -233,7 +233,7 @@ eudc-bbdb-query-internal
       (setq bbdb-attrs (append bbdb-attrs (list (car query-attrs))))
       (if (car query-attrs)
 	  ;; BEWARE: `bbdb-search' is a macro!
-	  (setq records (eval `(bbdb-search records ,@bbdb-attrs) t)))
+	  (setq records (eval `(bbdb-search (quote ,records) ,@bbdb-attrs) t)))
       (setq query-attrs (cdr query-attrs)))
     (mapc (lambda (record)
             (setq filtered (eudc-filter-duplicate-attributes record))
-- 
2.33.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* bug#53430: 28.0.91; eudc-expand-inline fails in BBDB backend with void records variable
  2022-01-21 23:08 bug#53430: 28.0.91; eudc-expand-inline fails in BBDB backend with void records variable Thomas Fitzsimmons
@ 2022-01-22  6:35 ` Eli Zaretskii
  2022-01-22 15:04   ` Thomas Fitzsimmons
  0 siblings, 1 reply; 3+ messages in thread
From: Eli Zaretskii @ 2022-01-22  6:35 UTC (permalink / raw)
  To: Thomas Fitzsimmons; +Cc: 53430

> From: Thomas Fitzsimmons <fitzsim@fitzsim.org>
> Date: Fri, 21 Jan 2022 18:08:13 -0500
> 
> I updated to the emacs-28 branch recently.  When I first tried to
> complete an e-mail address using eudc-expand-inline I saw this error:
> 
>     Symbol's value as variable is void: records
> 
> It turned out to be a quoting issue in eudc-bbdb-query-internal in the
> EUDC BBDB backend.  It looks like this was introduced by the change to
> lexical-binding.  The attached patch fixes the issue (though, the
> quoting that works now is different from what was there before the
> lexical-binding change).
> 
> Does it look OK to push to emacs-28?

Yes, thanks.





^ permalink raw reply	[flat|nested] 3+ messages in thread

* bug#53430: 28.0.91; eudc-expand-inline fails in BBDB backend with void records variable
  2022-01-22  6:35 ` Eli Zaretskii
@ 2022-01-22 15:04   ` Thomas Fitzsimmons
  0 siblings, 0 replies; 3+ messages in thread
From: Thomas Fitzsimmons @ 2022-01-22 15:04 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: 53430-done

Eli Zaretskii <eliz@gnu.org> writes:

>> From: Thomas Fitzsimmons <fitzsim@fitzsim.org>
>> Date: Fri, 21 Jan 2022 18:08:13 -0500
>> 
>> I updated to the emacs-28 branch recently.  When I first tried to
>> complete an e-mail address using eudc-expand-inline I saw this error:
>> 
>>     Symbol's value as variable is void: records
>> 
>> It turned out to be a quoting issue in eudc-bbdb-query-internal in the
>> EUDC BBDB backend.  It looks like this was introduced by the change to
>> lexical-binding.  The attached patch fixes the issue (though, the
>> quoting that works now is different from what was there before the
>> lexical-binding change).
>> 
>> Does it look OK to push to emacs-28?
>
> Yes, thanks.

Done, thanks.

Thomas





^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-01-22 15:04 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-21 23:08 bug#53430: 28.0.91; eudc-expand-inline fails in BBDB backend with void records variable Thomas Fitzsimmons
2022-01-22  6:35 ` Eli Zaretskii
2022-01-22 15:04   ` Thomas Fitzsimmons

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).