summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorStefan Kangas <stefan@marxist.se>2022-01-23 06:30:31 +0100
committerStefan Kangas <stefan@marxist.se>2022-01-23 06:30:31 +0100
commit1319d108dae70a8349110acd0f88d22436a9a70c (patch)
tree4b0df47612860f212f8923cb9a6ce96032445f34 /lisp
parent5d257a99b7a67ffb61b315480182593f48ceee5f (diff)
parent6d3608be88e1b30d2d10ee81f14dd485275c20ff (diff)
downloademacs-1319d108dae70a8349110acd0f88d22436a9a70c.tar.gz
emacs-1319d108dae70a8349110acd0f88d22436a9a70c.tar.bz2
emacs-1319d108dae70a8349110acd0f88d22436a9a70c.zip
Merge from origin/emacs-28
6d3608be88 Seccomp: improve support for newer versions of glibc (Bug#... e58ecd01d5 EUDC: Fix a quoting bug in the BBDB backend
Diffstat (limited to 'lisp')
-rw-r--r--lisp/net/eudcb-bbdb.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/eudcb-bbdb.el b/lisp/net/eudcb-bbdb.el
index 60a3adbc34f..e71dc238d08 100644
--- a/lisp/net/eudcb-bbdb.el
+++ b/lisp/net/eudcb-bbdb.el
@@ -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))