branch: elpa/isl
commit aaa40b40d6564567d7cc4e301e5e215e7425f54b
Author: Thierry Volpiatto <[email protected]>
Commit: Thierry Volpiatto <[email protected]>

    Fix pcase warnings about unused lex vars
---
 isl.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/isl.el b/isl.el
index 0ed02a783d9..504819b1f66 100644
--- a/isl.el
+++ b/isl.el
@@ -737,7 +737,7 @@ before and after."
                 (forward-line
                  (- (or (and current-prefix-arg (max arg 0))
                         (pcase isl-visible-context-lines
-                          (`(,before . ,after) before)
+                          (`(,before . ,_after) before)
                           ((and same) same)))))
                 ;; Store position from n lines before
                 ;; this overlay and bol and move to next overlay.
@@ -749,7 +749,7 @@ before and after."
                 (forward-line
                  (or (and current-prefix-arg (max arg 0))
                      (pcase isl-visible-context-lines
-                       (`(,before . ,after) after)
+                       (`(,_before . ,after) after)
                        ((and same) same))))
                 (setq start (1+ (pos-eol)))
                 (goto-char (next-single-char-property-change ov-end 'isl))

Reply via email to