branch: elpa/annotate
commit 6b73ccf0093d7022ef5f3dcb970e5b4ce5510a35
Author: cage <cage@invalid>
Commit: cage <cage@invalid>

    - fixed function's name.
---
 annotate.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/annotate.el b/annotate.el
index c06fb06361..b6ad32ba5c 100644
--- a/annotate.el
+++ b/annotate.el
@@ -2108,7 +2108,7 @@ point)."
   (when-let ((annotation (annotate-annotation-at point)))
     (let* ((delete-confirmed-p (annotate--confirm-annotation-delete)))
       (when delete-confirmed-p
-        (annotate--delete-annotation-prevent-modification annotation)))))
+        (annotate--delete-annotation-chain-prevent-modification annotation)))))
 
 (defun annotate-change-annotation (pos)
   "Change annotation at point. If empty, delete annotation."
@@ -2128,7 +2128,7 @@ point)."
          ((string= "" annotation-text)
           (let* ((delete-confirmed-p (annotate--confirm-annotation-delete)))
             (when delete-confirmed-p
-              (annotate--delete-annotation-prevent-modification highlight))))
+              (annotate--delete-annotation-chain-prevent-modification 
highlight))))
          ;; annotation was changed:
          (t
           (change highlight)))))))

Reply via email to