emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/emacsql 2f0a9457a4 029/427: Drop non-idiomatic :else.


From: ELPA Syncer
Subject: [nongnu] elpa/emacsql 2f0a9457a4 029/427: Drop non-idiomatic :else.
Date: Tue, 13 Dec 2022 02:59:25 -0500 (EST)

branch: elpa/emacsql
commit 2f0a9457a4dc0e12724c8b820f7135e2efae0c35
Author: Christopher Wellons <wellons@nullprogram.com>
Commit: Christopher Wellons <wellons@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.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]