branch: elpa/annotate commit 0d315a806eb84f90e5ba6f9f390e99d9de64e330 Author: cage <cage-invalid@invalid> Commit: cage <cage-invalid@invalid>
- fixed first argument of 'lwarn'; - using 'cl-find-if' instad of 'find-if'. --- annotate.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/annotate.el b/annotate.el index 4a03407ec9..55e8cf348a 100644 --- a/annotate.el +++ b/annotate.el @@ -143,8 +143,8 @@ major mode is a member of this list (space separated entries)." "The string used when a string is truncated with an ellipse") (defun annotate-annotations-exist-p () - (find-if 'annotationp - (overlays-in 0 (buffer-size)))) + (cl-find-if 'annotationp + (overlays-in 0 (buffer-size)))) (defun annotate-initialize-maybe () "Initialize annotate mode only if buffer's major mode is not in the blacklist (see: @@ -836,7 +836,7 @@ essentially what you get from: old-checksum new-checksum (not (string= old-checksum new-checksum))) - (lwarn "annotate-mode" + (lwarn '(annotate-mode) :warning annotate-warn-file-changed-control-string filename))