[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"))
- [elpa] externals/embark updated (99484b04ec -> e10bd62e2a), ELPA Syncer, 2024/02/05
- [elpa] externals/embark 3f2e7b6786 1/6: Fix merge conflicts and address oantolin's feedback, ELPA Syncer, 2024/02/05
- [elpa] externals/embark 3ffd4cb723 4/6: Document new grep exporter for consult-location, ELPA Syncer, 2024/02/05
- [elpa] externals/embark 0938451cc7 2/6: Remove unused variable,
ELPA Syncer <=
- [elpa] externals/embark 5f03210112 3/6: Refactor the two grep exporters, ELPA Syncer, 2024/02/05
- [elpa] externals/embark e10bd62e2a 6/6: Merge pull request #560 from artemkovalyov/location-exporter-to-grep-buffer, ELPA Syncer, 2024/02/05
- [elpa] externals/embark e1a8c0e9db 5/6: Fix bug in which after wgrep g no longer reruns the export, ELPA Syncer, 2024/02/05