1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-27 08:43:40 -07:00

Fix some sqlite doc string typos

* src/sqlite.c (Fsqlite_load_extension, Fsqlite_more_p): Fix typos
in doc strings.
This commit is contained in:
Lars Ingebrigtsen 2021-12-11 06:26:37 +01:00
parent e5f71051a0
commit 385f2faf34
2 changed files with 2 additions and 4 deletions

View file

@ -578,7 +578,7 @@ DEFUN ("sqlite-rollback", Fsqlite_rollback, Ssqlite_rollback, 1, 1, 0,
DEFUN ("sqlite-load-extension", Fsqlite_load_extension,
Ssqlite_load_extension, 2, 2, 0,
doc: /* Load a an SQlite module into DB.
doc: /* Load an SQlite module into DB.
MODULE should be the file name of an SQlite module .so file. */)
(Lisp_Object db, Lisp_Object module)
{
@ -622,7 +622,7 @@ DEFUN ("sqlite-columns", Fsqlite_columns, Ssqlite_columns, 1, 1, 0,
}
DEFUN ("sqlite-more-p", Fsqlite_more_p, Ssqlite_more_p, 1, 1, 0,
doc: /* Say whether there's any further results in SET. */)
doc: /* Say whether there are any further results in SET. */)
(Lisp_Object set)
{
check_sqlite (set, true);

View file

@ -53,8 +53,6 @@
(sqlite-select db "select * from test1" nil 'full)
'(("col1" "col2" "col3" "col4") ("foo" 2 9.45 "bar"))))))
;; (setq db (sqlite-open))
(ert-deftest sqlite-set ()
(skip-unless (sqlite-available-p))
(let ((db (sqlite-open))