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

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

[nongnu] elpa/symbol-overlay a783d7b5d8 6/6: Fix inconsistent lambda quo


From: ELPA Syncer
Subject: [nongnu] elpa/symbol-overlay a783d7b5d8 6/6: Fix inconsistent lambda quoting
Date: Sat, 29 Jul 2023 04:12:51 -0400 (EDT)

branch: elpa/symbol-overlay
commit a783d7b5d8dee5ba9f5e7c00a834fbd6d645081b
Author: Steve Purcell <steve@sanityinc.com>
Commit: Steve Purcell <steve@sanityinc.com>

    Fix inconsistent lambda quoting
---
 symbol-overlay.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/symbol-overlay.el b/symbol-overlay.el
index e2f92d1a45..453128a25f 100644
--- a/symbol-overlay.el
+++ b/symbol-overlay.el
@@ -633,8 +633,8 @@ When called interactively, then also reset
   "Put overlays on SYMBOL that is not highlighted in scope.
 KEYWORD provides the scope information."
   (when (and (cadr keyword)
-             (not (seq-find #'(lambda (ov)
-                                (string= (overlay-get ov 'symbol) symbol))
+             (not (seq-find (lambda (ov)
+                              (string= (overlay-get ov 'symbol) symbol))
                             (overlays-at
                              (car (bounds-of-thing-at-point 'symbol))))))
     (symbol-overlay-put-all symbol t keyword)))



reply via email to

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