branch: elpa/annotate
commit 30f639c524589899add1dee2925d83255c9a0901
Author: cage <cage-invalid@invalid>
Commit: cage <cage-invalid@invalid>
- fixed return value of 'maybe-force-newline-policy'.
---
annotate.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/annotate.el b/annotate.el
index a7b5c3518f..c191301dae 100644
--- a/annotate.el
+++ b/annotate.el
@@ -1534,7 +1534,8 @@ The searched interval can be customized setting the
variable:
(cl-find-if (lambda (a) (/= a
default-face-height))
all-faces-height))
(when force-newline-p
- (annotate-annotation-force-newline-policy
annotation))))))
+ (annotate-annotation-force-newline-policy annotation))
+ annotation))))
(if (not (annotate-string-empty-p annotated-text))
(let ((text-to-match (ignore-errors
(buffer-substring-no-properties start end))))