diff options
author | Thomas F. K. Jorna <[email protected]> | 2021-10-28 17:45:58 +0200 |
---|---|---|
committer | Thomas F. K. Jorna <[email protected]> | 2021-10-28 17:45:58 +0200 |
commit | 871a7cddfc0d51c30d447e140f3835b2c24341f9 (patch) | |
tree | c687160aa544986b12c40680faf266497e13aa73 /org-roam-ui.el | |
parent | b72ba8ef76dbb91ed39b23c6df154034c47e256f (diff) |
chore: be nicer about emacsql
Diffstat (limited to 'org-roam-ui.el')
-rw-r--r-- | org-roam-ui.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org-roam-ui.el b/org-roam-ui.el index b119085..24cc3cf 100644 --- a/org-roam-ui.el +++ b/org-roam-ui.el @@ -450,7 +450,7 @@ TODO: Split this up." ROWS is the sql result, while COLUMN-NAMES is the columns to use." (let (res) (while rows - ;; emacsql does not want to give us the tags as a list, so we post process it + ;; I don't know how to obtain the tags as a simple list, so we post process it (if (not (string= (car column-names) "tags")) (push (cons (pop column-names) (pop rows)) res) (push (cons (pop column-names) |