emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/annotate 9c2bf1bd36 192/372: - used the correct functions


From: ELPA Syncer
Subject: [nongnu] elpa/annotate 9c2bf1bd36 192/372: - used the correct functions when recurse.
Date: Fri, 4 Feb 2022 16:58:58 -0500 (EST)

branch: elpa/annotate
commit 9c2bf1bd361894d4f1c37a8fad0f36e45245fc36
Author: cage <cage-invalid@invalid>
Commit: cage <cage-invalid@invalid>

    - used the correct functions when recurse.
---
 annotate.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/annotate.el b/annotate.el
index 8bea4f8941..380bf26e0d 100644
--- a/annotate.el
+++ b/annotate.el
@@ -1428,7 +1428,7 @@ NOTE this assumes that annotations never overlaps"
                      nil)))))
   (let ((all-annotations (annotate-annotations-at pos)))
     (if all-annotations
-        (annotate-previous-annotation-ends (1- (overlay-start (cl-first 
all-annotations))))
+        (previous-annotation-ends (1- (overlay-start (cl-first 
all-annotations))))
       (previous-annotation-ends pos)))))
 
 (defun annotate-next-annotation-starts (pos)
@@ -1445,7 +1445,7 @@ NOTE this assumes that annotations never overlaps"
                      nil)))))
   (let ((all-annotations (annotate-annotations-at pos)))
     (if all-annotations
-        (annotate-previous-annotation-starts (overlay-ends (cl-first 
all-annotations)))
+        (next-annotation-starts (overlay-ends (cl-first all-annotations)))
       (next-annotation-starts pos)))))
 
 (defun annotate-symbol-strictly-at-point ()



reply via email to

[Prev in Thread] Current Thread [Next in Thread]