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

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

[nongnu] elpa/annotate 0d315a806e 105/372: - fixed first argument of 'lw


From: ELPA Syncer
Subject: [nongnu] elpa/annotate 0d315a806e 105/372: - fixed first argument of 'lwarn';
Date: Fri, 4 Feb 2022 16:58:22 -0500 (EST)

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



reply via email to

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