summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2026-04-27 13:47:17 +0300
committerEli Zaretskii <eliz@gnu.org>2026-04-27 13:47:17 +0300
commit5cee4fa0ff4bc5dd5da2fb4063cf04fa4b39bcc0 (patch)
tree5f831f04561846d6ea35041fc65519bcd7e24ed0 /src
parent09a90f0e902078208e1b1e7c488d10c0d5a9d858 (diff)
; Fix last change
* etc/NEWS: Announce the change in 'sqlite-close'. * src/sqlite.c (Fsqlite_close): Fix commentary. (Bug#80908).
Diffstat (limited to 'src')
-rw-r--r--src/sqlite.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqlite.c b/src/sqlite.c
index 97399339817..425a39d76dd 100644
--- a/src/sqlite.c
+++ b/src/sqlite.c
@@ -331,7 +331,7 @@ DEFUN ("sqlite-close", Fsqlite_close, Ssqlite_close, 1, 1, 0,
(Lisp_Object db)
{
/* Do nothing when the connection is already closed.
- This aligns with the behavior of sqlite3_close. */
+ This aligns with the behavior of 'sqlite3_close' itself. */
if (SQLITE (db) && !XSQLITE (db)->db)
return Qt;