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

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

[nongnu] elpa/emacsql 4f6b524b9f 026/427: Rename spec to schema.


From: ELPA Syncer
Subject: [nongnu] elpa/emacsql 4f6b524b9f 026/427: Rename spec to schema.
Date: Tue, 13 Dec 2022 02:59:24 -0500 (EST)

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

    Rename spec to schema.
---
 emacsql.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/emacsql.el b/emacsql.el
index a59f91931e..ebefea0f5d 100644
--- a/emacsql.el
+++ b/emacsql.el
@@ -213,10 +213,10 @@ If NAMED is non-nil, don't include column names."
      ,@body
      (emacsql--check-error ,conn)))
 
-(defun emacsql-create (conn table spec &optional if-not-exists)
-  "Create TABLE in CONN with SPEC."
+(defun emacsql-create (conn table schema &optional if-not-exists)
+  "Create TABLE in CONN with SCHEMA."
   (emacsql-with-errors conn
-    (cl-loop for column being the elements of spec
+    (cl-loop for column being the elements of schema
              when (consp column)
              collect (mapconcat #'emacsql-escape column " ")
              into parts



reply via email to

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