diff options
author | Stefan Kangas <stefan@marxist.se> | 2020-11-16 18:52:42 +0100 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2020-11-16 18:52:42 +0100 |
commit | 9191c82f6d69340ce231a41c61594e1b9b9b51aa (patch) | |
tree | fe921fac985237d38d902acd372d45709e5790d5 /lisp/net/eudc-export.el | |
parent | f0f2c8563b3f57be4c6b174b49fbac1e530ef7ac (diff) | |
download | emacs-9191c82f6d69340ce231a41c61594e1b9b9b51aa.tar.gz emacs-9191c82f6d69340ce231a41c61594e1b9b9b51aa.tar.bz2 emacs-9191c82f6d69340ce231a41c61594e1b9b9b51aa.zip |
Don't quote lambdas in net/*.el
* lisp/net/eudc-export.el (eudc-create-bbdb-record):
* lisp/net/eudc.el (eudc-print-attribute-value)
(eudc-display-records, eudc-process-form)
(eudc-filter-duplicate-attributes, eudc-filter-partial-records)
(eudc-add-field-to-records, eudc-query-with-words)
(eudc-query-form, eudc-menu):
* lisp/net/eudcb-bbdb.el (eudc-bbdb-extract-phones)
(eudc-bbdb-query-internal):
* lisp/net/mairix.el (mairix-widget-make-query-from-widgets)
(mairix-widget-build-editable-fields, mairix-widget-get-values):
Don't quote lambdas.
Diffstat (limited to 'lisp/net/eudc-export.el')
-rw-r--r-- | lisp/net/eudc-export.el | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/lisp/net/eudc-export.el b/lisp/net/eudc-export.el index ba86958142c..5c966281499 100644 --- a/lisp/net/eudc-export.el +++ b/lisp/net/eudc-export.el @@ -78,12 +78,11 @@ If SILENT is non-nil then the created BBDB record is not displayed." record t))) ;; BBDB custom fields (setq bbdb-notes (append (list (and bbdb-notes (cons 'notes bbdb-notes))) - (mapcar (function - (lambda (mapping) - (if (and (not (memq (car mapping) - '(name company net address phone notes))) - (setq value (eudc-parse-spec (cdr mapping) record nil))) - (cons (car mapping) value)))) + (mapcar (lambda (mapping) + (if (and (not (memq (car mapping) + '(name company net address phone notes))) + (setq value (eudc-parse-spec (cdr mapping) record nil))) + (cons (car mapping) value))) conversion-alist))) (setq bbdb-notes (delq nil bbdb-notes)) (setq bbdb-record (bbdb-create-internal |