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

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

[nongnu] elpa/emacsql 38bd19ed6f 276/427: Oops, use the right equality.


From: ELPA Syncer
Subject: [nongnu] elpa/emacsql 38bd19ed6f 276/427: Oops, use the right equality.
Date: Tue, 13 Dec 2022 02:59:51 -0500 (EST)

branch: elpa/emacsql
commit 38bd19ed6fa61785503693f45b304572b00484f8
Author: Christopher Wellons <wellons@nullprogram.com>
Commit: Christopher Wellons <wellons@nullprogram.com>

    Oops, use the right equality.
---
 emacsql-sqlite.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/emacsql-sqlite.el b/emacsql-sqlite.el
index c3503f6b8b..2d30d43fea 100644
--- a/emacsql-sqlite.el
+++ b/emacsql-sqlite.el
@@ -117,7 +117,8 @@ If called with non-nil ASYNC the return value is 
meaningless."
         (with-current-buffer log
           (let ((inhibit-read-only t))
             (insert (mapconcat #'identity (cons cc arguments) " ") "\n")
-            (= 0 (apply #'call-process cc nil (if async 0 t) t 
arguments))))))))
+            (eql 0 (apply #'call-process cc nil (if async 0 t) t
+                          arguments))))))))
 
 (defvar emacsql-sqlite-user-prompted nil
   "To avoid prompting for fetch multiple times.")



reply via email to

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