branch: externals/ebdb commit 022a18a6a5f84ff7bc9d10bab030f4df2ba2a9ee Author: Eric Abrahamsen <e...@ericabrahamsen.net> Commit: Eric Abrahamsen <e...@ericabrahamsen.net>
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 <e...@ericabrahamsen.net>