branch: externals/ebdb
commit 9c0947ca47e02693889ba06d22379e3b66b34ca0
Author: Eric Abrahamsen <[email protected]>
Commit: Eric Abrahamsen <[email protected]>
Comment out some custom definitions for address field
* ebdb.el (ebdb-field-bank-account): Apparently the customization
interface can't handle having other eieio objects inserted as slot
customization types. Or else I haven't figured out how to do it
correctly.
---
ebdb.el | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/ebdb.el b/ebdb.el
index fc9081f..3e4f42b 100644
--- a/ebdb.el
+++ b/ebdb.el
@@ -2197,7 +2197,8 @@ See `ebdb-url-valid-schemes' for a list of acceptable
schemes."
:initarg :bank-address
:type (or ebdb-field-address null)
:initform nil
- :custom ebdb-field-address
+ ;; :custom (choice ebdb-field-address
+ ;; (const :tag "No address" nil))
:documentation "Bank address")
(routing-aba
:initarg :routing-aba
@@ -2225,7 +2226,8 @@ See `ebdb-url-valid-schemes' for a list of acceptable
schemes."
(notes
:initarg :notes
:type (or ebdb-field-notes null)
- :custom ebdb-field-notes
+ ;; :custom (choice ebdb-field-notes
+ ;; (const :tag "No notes" nil))
:initform nil
:documentation "Additional notes"))
:human-readable "bank account"