branch: externals/ebdb
commit 6568bbf81afccf568ad4dac3426ccd2ac4f9a5f0
Author: Eric Abrahamsen <[email protected]>
Commit: Eric Abrahamsen <[email protected]>
Straighten out ebdb-separator-alist
* ebdb.el (ebdb-separator-alist): Some drunk idiot hit "M-q" on this
defcustom at some point.
---
ebdb.el | 18 +++++++++++++-----
1 file changed, 13 insertions(+), 5 deletions(-)
diff --git a/ebdb.el b/ebdb.el
index b04e74f..4601992 100644
--- a/ebdb.el
+++ b/ebdb.el
@@ -3409,12 +3409,20 @@ This is used for fields which do not have an entry in
`ebdb-separator-alist'."
(defcustom ebdb-separator-alist
'((record "\n\n" "\n\n") ; used by `ebdb-copy-fields-as-kill'
- (name-first-last "[ ,;]" " ") (name-last-first "[ ,;]" ", ")
+ (name-first-last "[ ,;]" " ")
+ (name-last-first "[ ,;]" ", ")
(name-field ":\n" ":\n") ; used by `ebdb-copy-fields-as-kill'
- (phone "[,;]" ", ") (address ";\n" ";\n") ; ditto
- (organization "[,;]" ", ") (affix "[,;]" ", ") (aka "[,;]" ", ")
- (mail "[,;]" ", ") (mail-alias "[,;]" ", ") (vm-folder "[,;]" ", ")
- (birthday "\n" "\n") (wedding "\n" "\n") (anniversary "\n" "\n")
+ (phone "[,;]" ", ")
+ (address ";\n" ";\n")
+ (organization "[,;]" ", ")
+ (affix "[,;]" ", ")
+ (aka "[,;]" ", ")
+ (mail "[,;]" ", ")
+ (mail-alias "[,;]" ", ")
+ (vm-folder "[,;]" ", ")
+ (birthday "\n" "\n")
+ (wedding "\n" "\n")
+ (anniversary "\n" "\n")
(notes "\n" "\n"))
"Alist of field separators.
Each element is of the form (FIELD SPLIT-RE JOIN).