branch: externals/ebdb
commit d5bec839700c4996a142ea940efe82cee10a2fbb
Author: Eric Abrahamsen <[email protected]>
Commit: Eric Abrahamsen <[email protected]>
Fix to UUID change
Update to 40d71b9, addresses #38
* ebdb.el (ebdb-make-uuid): Need to actually check if the executable
is found.
---
ebdb.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/ebdb.el b/ebdb.el
index 4f2c466..c1ee74a 100644
--- a/ebdb.el
+++ b/ebdb.el
@@ -2699,7 +2699,8 @@ executable. When a symbol, assume an Elisp function."
(concat prefix "-")))
(uid
(cond
- ((stringp ebdb-uuid-function)
+ ((and (stringp ebdb-uuid-function)
+ (executable-find ebdb-uuid-function))
(shell-command-to-string
(executable-find ebdb-uuid-function)))
((functionp ebdb-uuid-function)