[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/emacsql c229dfb749 1/4: emacql-sqlite-open: No longer set
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/emacsql c229dfb749 1/4: emacql-sqlite-open: No longer set exit flag of process |
Date: |
Sun, 17 Nov 2024 12:59:56 -0500 (EST) |
branch: elpa/emacsql
commit c229dfb7494e72fd90e4c31993146abc021e347a
Author: Jonas Bernoulli <jonas@bernoul.li>
Commit: Jonas Bernoulli <jonas@bernoul.li>
emacql-sqlite-open: No longer set exit flag of process
There no longer can be a process, only the removed `emacsql-sqlite'
back-end used a process.
---
emacsql-sqlite-common.el | 2 --
1 file changed, 2 deletions(-)
diff --git a/emacsql-sqlite-common.el b/emacsql-sqlite-common.el
index 1c9f369e42..f63442e1d6 100644
--- a/emacsql-sqlite-common.el
+++ b/emacsql-sqlite-common.el
@@ -108,8 +108,6 @@ non-nil, log all SQLite commands to a log buffer, for
debugging
purposes."
(let* ((class (emacsql-sqlite-default-connection))
(connection (make-instance class :file file)))
- (when (eq class 'emacsql-sqlite-connection)
- (set-process-query-on-exit-flag (oref connection handle) nil))
(when debug
(emacsql-enable-debugging connection))
connection))