branch: elpa/parseclj
commit f362018ff12aa190c3691b7d1afe9186db9dee0b
Author: Daniel Barreto <[email protected]>
Commit: Daniel Barreto <[email protected]>
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.