Fix: (org-ql--peg-parse-string) Unused lexical variable warning
peg.el doesn't use lexical binding, and org-ql.el does, so this caused a byte-compile warning. It doesn't seem to change the behavior of the expanded code, so it should be a safe change...
This commit is contained in:
parent
94be07244c
commit
5e61d1b326
1 changed files with 1 additions and 1 deletions
|
|
@ -1682,7 +1682,7 @@ resp. succeded instead of signaling an error."
|
||||||
,(if noerror
|
,(if noerror
|
||||||
(let ((entry (make-symbol "entry"))
|
(let ((entry (make-symbol "entry"))
|
||||||
(start (caar rules)))
|
(start (caar rules)))
|
||||||
`(peg-parse (entry (or (and ,start `(-- t)) ""))
|
`(peg-parse (,entry (or (and ,start `(-- t)) ""))
|
||||||
. ,rules))
|
. ,rules))
|
||||||
`(peg-parse . ,rules))))
|
`(peg-parse . ,rules))))
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue