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.
This commit is contained in:
parent
fbc9b121e0
commit
e58ecd01d5
1 changed files with 1 additions and 1 deletions
|
@ -233,7 +233,7 @@ RETURN-ATTRS is a list of attributes to return, defaulting to
|
|||
(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))
|
||||
|
|
Loading…
Add table
Reference in a new issue