Skip to content

remove warning: Use of deprecated ((lambda (term) ...) ...) form #76

Description

@patxoca

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions