branch: elpa/emacsql commit 2f0a9457a4dc0e12724c8b820f7135e2efae0c35 Author: Christopher Wellons <well...@nullprogram.com> Commit: Christopher Wellons <well...@nullprogram.com>
Drop non-idiomatic :else. --- emacsql.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emacsql.el b/emacsql.el index 8f23aeb8ee..69711df2ae 100644 --- a/emacsql.el +++ b/emacsql.el @@ -243,7 +243,7 @@ If NAMED is non-nil, don't include column names." (let ((print-escape-newlines t)) (cond ((null value) "NULL") ((numberp value) (prin1-to-string value)) - (:else (emacsql-escape (prin1-to-string value) t))))) + ((emacsql-escape (prin1-to-string value) t))))) (defun emacsql-insert (conn table &rest rows) "Insert ROWS into TABLE.