diff options
author | Thomas Fitzsimmons <fitzsim@fitzsim.org> | 2017-11-10 09:39:37 -0500 |
---|---|---|
committer | Thomas Fitzsimmons <fitzsim@fitzsim.org> | 2017-11-14 21:09:25 -0500 |
commit | 2beb51159c2283f9cfd45d05faa90c609c3ea9b7 (patch) | |
tree | ca0dd48db02987915248d7b531bab95502a5b3f1 /lisp | |
parent | 3636aa23be61747daa80b9c8f410552d248132d0 (diff) | |
download | emacs-2beb51159c2283f9cfd45d05faa90c609c3ea9b7.tar.gz |
EUDC: Wrap long line in BBDB backend
* lisp/net/eudcb-bbdb.el (eudc-bbdb-format-record-as-result):
Wrap long line.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/net/eudcb-bbdb.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/net/eudcb-bbdb.el b/lisp/net/eudcb-bbdb.el index 7edc740b53f..1bb0daadd15 100644 --- a/lisp/net/eudcb-bbdb.el +++ b/lisp/net/eudcb-bbdb.el @@ -164,7 +164,8 @@ BBDB < 3 used `net'; BBDB >= 3 uses `mail'." The record is filtered according to `eudc-bbdb-current-return-attributes'" (require 'bbdb) (let ((attrs (or eudc-bbdb-current-return-attributes - '(firstname lastname aka company phones addresses net notes))) + '(firstname lastname aka company phones + addresses net notes))) attr eudc-rec val) |