branch: elpa/emacsql commit 1d0ef4011ca97716b5f7de46e1c29fb5e8c4dc05 Author: Christopher Wellons <well...@nullprogram.com> Commit: Christopher Wellons <well...@nullprogram.com>
Make emacsql-connection abstract. --- emacsql.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/emacsql.el b/emacsql.el index 0df4f17ec7..eb30f73ca3 100644 --- a/emacsql.el +++ b/emacsql.el @@ -68,7 +68,8 @@ :initarg :log-buffer :accessor emacsql-log-buffer :documentation "Output log (debug).")) - (:documentation "A connection to a SQL database.")) + (:documentation "A connection to a SQL database.") + :abstract t) (defgeneric emacsql (connection sql &rest args) "Send SQL s-expression to CONNECTION and return the results.")