From 228af5b6be3b2dfd60dae0dd9a517ebb6fee5b8b Mon Sep 17 00:00:00 2001 From: N V <44036031+progfolio@users.noreply.github.com> Date: Sun, 19 Apr 2020 14:24:18 -0400 Subject: [PATCH] (fix): Remove old definition of org-roam-graph--open (#498) Fixes #496 --- org-roam-graph.el | 6 ------ 1 file changed, 6 deletions(-) diff --git a/org-roam-graph.el b/org-roam-graph.el index 1f79380..7418839 100644 --- a/org-roam-graph.el +++ b/org-roam-graph.el @@ -235,12 +235,6 @@ If MAX-DISTANCE is non-nil, limit nodes to MAX-DISTANCE steps." :where (in file [,@files])])) (org-roam-graph--build query))) -(defun org-roam-graph--open (file) - "Open FILE using `org-roam-graph-viewer', with `view-file' as a fallback." - (if (and org-roam-graph-viewer (executable-find org-roam-graph-viewer)) - (call-process org-roam-graph-viewer nil 0 nil file) - (view-file file))) - ;;;; Commands ;;;###autoload (defun org-roam-graph (&optional arg file node-query)