diff options
author | Thanos Apollo <[email protected]> | 2024-05-13 21:31:30 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-05-13 21:31:30 +0300 |
commit | 81f364ba523c36eba3c467f8affd739c3b88e7b4 (patch) | |
tree | 2ed9fefe55dce925a03baddefa63921415f80c10 /gnosis.el | |
parent | 22503ad3fd9ae3d0fb062b31b91fabba7a750c0b (diff) |
[fix] gnsois-db: Use defvar instead of defconst
Defconst would not allow the value to change when using gnosis-vc-pull
Diffstat (limited to 'gnosis.el')
-rw-r--r-- | gnosis.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -112,7 +112,7 @@ When nil, the image will be displayed at its original size." (make-directory gnosis-dir) (make-directory gnosis-images-dir)) -(defconst gnosis-db +(defvar gnosis-db (emacsql-sqlite-open (expand-file-name "gnosis.db" gnosis-dir)) "Gnosis database file.") |