branch: externals/ebdb
commit 994b52c252ef162e3cdc1e2b4855748d563a66e8
Author: Eric Abrahamsen <[email protected]>
Commit: Eric Abrahamsen <[email protected]>
Call signal correctly
* ebdb.el (ebdb-record-related): Needs two arguments.
---
ebdb.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ebdb.el b/ebdb.el
index ee39ae0..64ab609 100644
--- a/ebdb.el
+++ b/ebdb.el
@@ -2827,7 +2827,7 @@ by the field, or else raising the error
`ebdb-related-unfound'.")
(cl-defmethod ebdb-record-related ((_record ebdb-record)
(_field ebdb-field))
"Provide a base method that raises `ebdb-related-unfound'."
- (signal 'ebdb-related-unfound))
+ (signal 'ebdb-related-unfound '("Related record not found")))
;; The following functions are here because they need to come after
;; `ebdb-record' has been defined.