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 ()