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

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

[elpa] externals/embark 0938451cc7 2/6: Remove unused variable


From: ELPA Syncer
Subject: [elpa] externals/embark 0938451cc7 2/6: Remove unused variable
Date: Mon, 5 Feb 2024 15:57:54 -0500 (EST)

branch: externals/embark
commit 0938451cc73fe2350eedabb030b0bc6a4e10e8e7
Author: Artem Kovalyov <artem.kovalyov@gmail.com>
Commit: Artem Kovalyov <artem.kovalyov@gmail.com>

    Remove unused variable
---
 embark-consult.el | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/embark-consult.el b/embark-consult.el
index ad3783a0ed..0e9dd75a40 100644
--- a/embark-consult.el
+++ b/embark-consult.el
@@ -152,8 +152,7 @@ The elements of LINES are assumed to be values of category 
`consult-line'."
   "Create an occur or grep mode buffer listing LINES.
 The elements of LINES are assumed to be values of category `consult-location'."
   (let ((buf (generate-new-buffer "*Embark Export Grep*"))
-        (count 0)
-        prop)
+        (count 0))
     (with-current-buffer buf
       (insert (propertize "Exported line search results (file-backed buffers 
only):\n" 'wgrep-header t 'font-lock-face '(:weight bold)))
       (save-excursion (let (last-buf
@@ -241,8 +240,7 @@ This function is meant to be added to 
`embark-collect-mode-hook'."
 (defun embark-consult-export-grep (lines)
   "Create a grep mode buffer listing LINES."
   (let ((buf (generate-new-buffer "*Embark Export Grep*"))
-        (count 0)
-        prop)
+        (count 0))
     (with-current-buffer buf
       (insert (propertize "Exported grep results:\n\n" 'wgrep-header t))
       (dolist (line lines) (insert line "\n"))



reply via email to

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