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

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

[nongnu] elpa/parseclj f362018ff1 112/185: Silence the byte-compiler abo


From: ELPA Syncer
Subject: [nongnu] elpa/parseclj f362018ff1 112/185: Silence the byte-compiler about some unused vars.
Date: Tue, 28 Dec 2021 14:05:26 -0500 (EST)

branch: elpa/parseclj
commit f362018ff12aa190c3691b7d1afe9186db9dee0b
Author: Daniel Barreto <daniel.barreto.n@gmail.com>
Commit: Daniel Barreto <daniel.barreto.n@gmail.com>

    Silence the byte-compiler about some unused vars.
---
 parseclj-ast.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/parseclj-ast.el b/parseclj-ast.el
index f812191bf9..72793fdc57 100644
--- a/parseclj-ast.el
+++ b/parseclj-ast.el
@@ -55,7 +55,7 @@ Other ATTRIBUTES can be given as a flat list of key-value 
pairs."
 
 ;; Parse/reduce strategy functions
 
-(defun parseclj-ast--reduce-leaf (stack token &optional options)
+(defun parseclj-ast--reduce-leaf (stack token &optional _options)
   "Put into the STACK an AST leaf node based on TOKEN.
 Ignores white spaces and comments.
 
@@ -92,7 +92,7 @@ on available options."
                 stack))
       (parseclj-ast--reduce-leaf stack token options))))
 
-(defun parseclj-ast--reduce-branch (stack opening-token children options)
+(defun parseclj-ast--reduce-branch (stack opening-token children _options)
   "Reduce STACK with an AST branch node representing a collection of elements.
 Ignores discard tokens.
 



reply via email to

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