branch: elpa/emacsql commit 3dfd0d4b8c008e9ac584d473de8eb188617a1dc0 Author: Christopher Wellons <well...@nullprogram.com> Commit: Christopher Wellons <well...@nullprogram.com>
Fix missing argument typo. --- emacsql.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emacsql.el b/emacsql.el index 8837e645e4..1b5b1910ac 100644 --- a/emacsql.el +++ b/emacsql.el @@ -278,6 +278,6 @@ A prefix argument causes the SQL to be printed into the current buffer." (let ((sql (emacsql-flatten-sql (preceding-sexp)))) (if prefix (insert sql) - (emacsql-show-sql )))) + (emacsql-show-sql sql)))) ;;; emacsql.el ends here