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

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

[nongnu] elpa/emacsql d2f1bcef5d 165/427: Rename add-connection to regis


From: ELPA Syncer
Subject: [nongnu] elpa/emacsql d2f1bcef5d 165/427: Rename add-connection to register.
Date: Tue, 13 Dec 2022 02:59:38 -0500 (EST)

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

    Rename add-connection to register.
---
 emacsql-psql.el   | 2 +-
 emacsql-sqlite.el | 3 +--
 emacsql.el        | 2 +-
 3 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/emacsql-psql.el b/emacsql-psql.el
index 5dd3184e4a..9406826b55 100644
--- a/emacsql-psql.el
+++ b/emacsql-psql.el
@@ -33,7 +33,7 @@
                                       :process process
                                       :dbname dbname)))
       (prog1 connection
-        (emacsql-add-connection connection)
+        (emacsql-register connection)
         (emacsql-send-string connection "\\pset pager off")
         (emacsql-send-string connection "\\a")
         (emacsql-send-string connection "\\t")
diff --git a/emacsql-sqlite.el b/emacsql-sqlite.el
index 25e9ca5fbc..6bb1f2e5c1 100644
--- a/emacsql-sqlite.el
+++ b/emacsql-sqlite.el
@@ -11,7 +11,6 @@
 
 (defun emacsql-sqlite3-unavailable-p ()
   "Return a reason if the sqlite3 executable is not available.
-
 :no-executable -- cannot find the executable
 :cannot-execute -- cannot run the executable
 :old-version -- sqlite3 version is too old"
@@ -61,7 +60,7 @@ buffer. This is for debugging purposes."
           (setf (emacsql-log-buffer connection)
                 (generate-new-buffer "*emacsql-log*")))
         (emacsql-wait connection)
-        (emacsql-add-connection connection)))))
+        (emacsql-register connection)))))
 
 ;;;###autoload
 (defalias 'emacsql-connect 'emacsql-sqlite)
diff --git a/emacsql.el b/emacsql.el
index e6e8bf50ef..0df4f17ec7 100644
--- a/emacsql.el
+++ b/emacsql.el
@@ -150,7 +150,7 @@ This collection exists for cleanup purposes.")
 (defvar emacsql-reap-timer nil
   "Timer used to check for dead emacsql connections.")
 
-(defun emacsql-add-connection (connection)
+(defun emacsql-register (connection)
   "Add CONNECTION to the global connection list."
   (emacsql-start-reap-timer)
   (push (cons (copy-sequence connection) (emacsql--ref connection))



reply via email to

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