diff options
author | Thanos Apollo <[email protected]> | 2023-12-26 03:02:40 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-12-26 03:03:06 +0200 |
commit | 00daa6e96c4b38dfae1c278ee584978aa6d23c2c (patch) | |
tree | b12452f9e68eebec6fdc3e3d1a0902aa79605a82 | |
parent | 47ba471009d0471a4125b3c863b71db2ae4de3a0 (diff) |
[Fix] emacsql for issue #113
issue: https://github.com/magit/emacsql/issues/113
- Add emacsql as snapshot
- Use emacsql-sqlite-open
-rw-r--r-- | gnosis.el | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -7,7 +7,7 @@ ;; URL: https://git.thanosapollo.org/gnosis ;; Version: 0.0.1 -;; Package-Requires: ((emacs "27.2") (compat "29.1.4.2")) +;; Package-Requires: ((emacs "27.2") (compat "29.1.4.2") (emacsql "20230228")) ;; This program is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by @@ -56,7 +56,7 @@ (make-directory gnosis-dir) (make-directory gnosis-images-dir)) -(defvar gnosis-db (emacsql-sqlite (concat gnosis-dir "/" "gnosis.db")) +(defvar gnosis-db (emacsql-sqlite-open (concat gnosis-dir "/" "gnosis.db")) "Gnosis database.") (cl-defun gnosis--select (value table &optional (restrictions '1=1)) |