When byte-compiling my configuration, I get the following warning:
Use of deprecated ((lambda (term) ...) ...) form
I've narrowed the issue down to:
(,term-transformation-hook search-term)
The macros expands to:
((lambda (term) ...) search-term)
which uses a deprecated form of calling a lambda
Replacing it with:
(funcall ,term-transformation-hook search-term)
removes the warning.
When byte-compiling my configuration, I get the following warning:
Use of deprecated ((lambda (term) ...) ...) formI've narrowed the issue down to:
(,term-transformation-hook search-term)The macros expands to:
((lambda (term) ...) search-term)which uses a deprecated form of calling a lambda
Replacing it with:
(funcall ,term-transformation-hook search-term)removes the warning.