Skip to content
This repository was archived by the owner on Oct 28, 2021. It is now read-only.
This repository was archived by the owner on Oct 28, 2021. It is now read-only.

Defun forms not highlighting correctly with &key parameters which have default values #9

@Fractangle

Description

@Fractangle

In the following code, defun and wrong1 are not highlighted, but the (+ 3 4) is:

(defun wrong1 (&key (has-default (+ 3 4)))
  (+ has-default 1))

However, if we replace (+ 3 4) with 7, then the 7 is not highlighted, but defun and wrong2 are:

(defun wrong2 (&key (has-default 7))
  (+ has-default 1))

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