branch: elpa/emacsql
commit 543189295dcec660838bde3b0cf5fbb04004256c
Author: Christopher Wellons <[email protected]>
Commit: Christopher Wellons <[email protected]>
Drop the pointless autoloads.
---
emacsql-psql.el | 2 --
emacsql-sqlite.el | 3 ---
2 files changed, 5 deletions(-)
diff --git a/emacsql-psql.el b/emacsql-psql.el
index ecb8bfb4b6..f4b76a185e 100644
--- a/emacsql-psql.el
+++ b/emacsql-psql.el
@@ -9,7 +9,6 @@
(defvar emacsql-psql-executable "psql"
"Path to the psql (PostgreSQL client) executable.")
-;;;###autoload
(defun emacsql-psql-unavailable-p ()
"Return a reason if the psql executable is not available.
:no-executable -- cannot find the executable
@@ -37,7 +36,6 @@
(nil "TEXT"))))
(:documentation "A connection to a PostgreSQL database."))
-;;;###autoload
(cl-defun emacsql-psql (dbname &key username hostname port debug)
"Connect to a PostgreSQL server using the psql command line program."
(let ((args (list dbname)))
diff --git a/emacsql-sqlite.el b/emacsql-sqlite.el
index db4d4922e7..d69cfe30ad 100644
--- a/emacsql-sqlite.el
+++ b/emacsql-sqlite.el
@@ -9,7 +9,6 @@
(defvar emacsql-sqlite3-executable "sqlite3"
"Path to the sqlite3 executable.")
-;;;###autoload
(defun emacsql-sqlite3-unavailable-p ()
"Return a reason if the sqlite3 executable is not available.
:no-executable -- cannot find the executable
@@ -39,7 +38,6 @@
(nil nil))))
(:documentation "A connection to a SQLite database."))
-;;;###autoload
(cl-defun emacsql-sqlite (file &key debug)
"Open a connected to database stored in FILE.
If FILE is nil use an in-memory database.
@@ -71,7 +69,6 @@ buffer. This is for debugging purposes."
(emacsql-wait connection)
(emacsql-register connection)))
-;;;###autoload
(defalias 'emacsql-connect 'emacsql-sqlite)
(defmethod emacsql-close ((connection emacsql-sqlite-connection))