Skip to content

Weird behavior with reader #14

Description

@githubforced2fabad
  1. (markup:markup-enable-reader)
    markup:markup-enable-reader is not defined. (markup:enable-reader) works tho.

  2. I have setup a project with both cl-annot and markup. I setup the readers in the asdf system like so:

:around-compile
  "(lambda (thunk)
     (cl-annot:enable-annot-syntax)
     (markup:enable-reader)
     (funcall thunk))"

the markup reader seems to uninstall the cl-annot reader. if I put the markup reader before the cl-annot reader like so

:around-compile
  "(lambda (thunk)
     (markup:enable-reader)
     (cl-annot:enable-annot-syntax)
     (funcall thunk))"

then both of them work together.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions