[elpa] externals/ebdb 5c9893c 1/2: Fix debug declaration for ebdb-with-record-edits

2018-04-05 Thread Eric Abrahamsen
branch: externals/ebdb
commit 5c9893c87ccdf515cb4060e6e2c0593ecf87d386
Author: Eric Abrahamsen 
Commit: Eric Abrahamsen 

Fix debug declaration for ebdb-with-record-edits

* ebdb-com.el (ebdb-with-record-edits): Forgot to change this.
---
 ebdb-com.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ebdb-com.el b/ebdb-com.el
index 1cb2f70..89718f2 100644
--- a/ebdb-com.el
+++ b/ebdb-com.el
@@ -1538,7 +1538,7 @@ and bails out if any of its databases are unsynced.
 
 Then it runs `ebdb-change-hook' on the record, executes BODY,
 runs `ebdb-after-change-hook', and redisplays the record."
-  (declare (indent 1) (debug ((symbolp form) body)))
+  (declare (indent 1) (debug (symbolp body)))
   ;; I'm expecting that none of the local variables in this macro
   ;; (including the "err" arg to `condition-case'), will be exposed
   ;; within "body".  Hopefully that's not wrong.



[elpa] externals/ebdb 022a18a 2/2: Fix erroneous quoting of option, bump to 0.5.1

2018-04-05 Thread Eric Abrahamsen
branch: externals/ebdb
commit 022a18a6a5f84ff7bc9d10bab030f4df2ba2a9ee
Author: Eric Abrahamsen 
Commit: Eric Abrahamsen 

Fix erroneous quoting of option, bump to 0.5.1

* ebdb-com.el (ebdb-edit-foo): Shouldn't have been quoting this
  customization option. Also remove unnecessary let*.
* ebdb.el: Bump to 0.5.1
---
 ebdb-com.el | 6 +++---
 ebdb.el | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/ebdb-com.el b/ebdb-com.el
index 89718f2..977ff3b 100644
--- a/ebdb-com.el
+++ b/ebdb-com.el
@@ -1764,8 +1764,8 @@ Interactively, if called without a prefix, edit the notes 
field
 of RECORD.  When called with a prefix, prompt the user for a
 field to edit."
   (interactive
-   (let* ((record (ebdb-current-record))
-  field field-list)
+   (let ((record (ebdb-current-record))
+ field field-list)
  (if current-prefix-arg
 (setq field-list
   (mapcar
@@ -1795,7 +1795,7 @@ field to edit."
   (ebdb-with-record-edits record
 (if field
(ebdb-com-edit-field record field)
-  (ebdb-com-insert-field record 'ebdb-default-notes-class
+  (ebdb-com-insert-field record ebdb-default-notes-class
 
 ;; (ebdb-list-transpose '(a b c d) 1 3)
 (defun ebdb-list-transpose (list i j)
diff --git a/ebdb.el b/ebdb.el
index 5d3d547..6a02dff 100644
--- a/ebdb.el
+++ b/ebdb.el
@@ -2,7 +2,7 @@
 
 ;; Copyright (C) 2016-2018  Free Software Foundation, Inc.
 
-;; Version: 0.5
+;; Version: 0.5.1
 ;; Package-Requires: ((emacs "25.1") (cl-lib "0.5") (seq "2.15"))
 
 ;; Maintainer: Eric Abrahamsen 



[elpa] externals/ebdb updated (d60338c -> 022a18a)

2018-04-05 Thread Eric Abrahamsen
girzel pushed a change to branch externals/ebdb.

  from  d60338c   Bump version to 0.5
   new  5c9893c   Fix debug declaration for ebdb-with-record-edits
   new  022a18a   Fix erroneous quoting of option, bump to 0.5.1


Summary of changes:
 ebdb-com.el | 8 
 ebdb.el | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)



[elpa] externals/ebdb 01c30dd: Fix dumb mistake in eieio-done-customizing, bump to 0.5.2

2018-04-05 Thread Eric Abrahamsen
branch: externals/ebdb
commit 01c30dde9296f1ded0b893db81a097448d1cff90
Author: Eric Abrahamsen 
Commit: Eric Abrahamsen 

Fix dumb mistake in eieio-done-customizing, bump to 0.5.2

* ebdb-com.el (eieio-done-customizing): Was too hasty with this.
---
 ebdb-com.el | 4 +++-
 ebdb.el | 2 +-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/ebdb-com.el b/ebdb-com.el
index 977ff3b..8945668 100644
--- a/ebdb-com.el
+++ b/ebdb-com.el
@@ -1736,7 +1736,9 @@ commands, called from an *EBDB* buffer, and the 
lower-level
   (ebdb-record-insert-field rec f
 
 (cl-defmethod eieio-done-customizing :after ((f ebdb-field))
-  (ebdb-redisplay-records rec 'reformat t))
+  (let ((rec ebdb-custom-field-record))
+(when rec
+ (ebdb-redisplay-records rec 'reformat t
 
 (cl-defmethod eieio-done-customizing :after ((mail ebdb-field-mail))
   "Handle mail priority after customizing.
diff --git a/ebdb.el b/ebdb.el
index 6a02dff..0fcff72 100644
--- a/ebdb.el
+++ b/ebdb.el
@@ -2,7 +2,7 @@
 
 ;; Copyright (C) 2016-2018  Free Software Foundation, Inc.
 
-;; Version: 0.5.1
+;; Version: 0.5.2
 ;; Package-Requires: ((emacs "25.1") (cl-lib "0.5") (seq "2.15"))
 
 ;; Maintainer: Eric Abrahamsen