From 32e2fba6daf0c9f461dc8cd79f6bb781cd7c55ce Mon Sep 17 00:00:00 2001
From: Case Duckworth
Date: Thu, 22 Apr 2021 09:59:31 -0500
Subject: Fix wrong function calls

When I changed `unpackaged/org-element-descendent-of' to
`acdw-org/element-descendent-of' (honestly, to make it easier to see where the
definition of the function is), I didn't change all the references to that
function.
---
 lisp/acdw-org.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/acdw-org.el b/lisp/acdw-org.el
index 13a1b88..bb72eb8 100644
--- a/lisp/acdw-org.el
+++ b/lisp/acdw-org.el
@@ -27,7 +27,7 @@ ELEMENT should be a list like that returned by `org-element-context'."
   ;; MAYBE: Use `org-element-lineage'.
   (when-let* ((parent (org-element-property :parent element)))
     (or (eq type (car parent))
-        (unpackaged/org-element-descendant-of type parent))))
+        (acdw-org/element-descendant-of type parent))))
 
 (defun acdw-org/return-dwim (&optional default)
   "A helpful replacement for `org-return'.  With prefix, call `org-return'.
@@ -241,6 +241,6 @@ the deletion might narrow the column."
   (interactive "p")
   (if (org-table-check-inside-data-field 'noerror)
       (org-table-copy-down n)
-    (unpackaged/org-return-dwim n)))
+    (acdw-org/return-dwim n)))
 
 (provide 'acdw-org)
-- 
cgit 1.4.1-21-gabe81