summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Hyatt <ahyatt@gmail.com>2026-03-28 01:10:06 -0400
committerAndrew Hyatt <ahyatt@gmail.com>2026-03-28 01:10:06 -0400
commit127e42e98f7df3997d538d72a67604c9584517dd (patch)
tree55a50b424450bbda47cd2945a95eee5f59ee6bda
parentafce8f49ea5a2a93bb9f2c2d36c0dd7d2e8cd2b5 (diff)
Set version to 0.6.2externals/triples
-rw-r--r--triples.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/triples.el b/triples.el
index 7fa4eaf..b924238 100644
--- a/triples.el
+++ b/triples.el
@@ -6,7 +6,7 @@
;; Homepage: https://github.com/ahyatt/triples
;; Package-Requires: ((seq "2.0") (emacs "28.1"))
;; Keywords: triples, kg, data, sqlite
-;; Version: 0.6.1
+;; Version: 0.6.2
;; 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 the Free Software Foundation; either version 2 of the
@@ -446,10 +446,10 @@ merged into NEW-SUBJECT."
(signal 'error err))))
('emacsql
(emacsql-with-transaction db
- (emacsql db [:update triples :set (= subject $s1) :where (= subject $s2)]
- new-subject old-subject)
- (emacsql db [:update triples :set (= object $s1) :where (= object $s2)]
- new-subject old-subject)))))
+ (emacsql db [:update triples :set (= subject $s1) :where (= subject $s2)]
+ new-subject old-subject)
+ (emacsql db [:update triples :set (= object $s1) :where (= object $s2)]
+ new-subject old-subject)))))
;; Code after this point should not call sqlite or emacsql directly. If any more
;; calls are needed, put them in a defun, make it work for sqlite and emacsql,