-
-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't require a submodule in the same chunk with scribble/lp2 #15
Comments
Wrapping the module #lang scribble/lp2
@chunk[<*>
(begin
(module m racket
(define x 1)
(provide x))
(require 'm))] ;; Works. |
SuzanneSoy
added a commit
to SuzanneSoy/hyper-literate
that referenced
this issue
Jun 17, 2016
…cketblock vs RACKETBLOCK parameter for chunk and CHUNK instead of calling define-syntax-rule twice.
SuzanneSoy
added a commit
to SuzanneSoy/hyper-literate
that referenced
this issue
Jun 17, 2016
…cketblock vs RACKETBLOCK parameter for chunk and CHUNK instead of calling define-syntax-rule twice.
SuzanneSoy
added a commit
to SuzanneSoy/hyper-literate
that referenced
this issue
Jun 17, 2016
…cketblock vs RACKETBLOCK parameter for chunk and CHUNK instead of calling define-syntax-rule twice.
SuzanneSoy
added a commit
to SuzanneSoy/hyper-literate
that referenced
this issue
Jun 17, 2016
…cketblock vs RACKETBLOCK parameter for chunk and CHUNK instead of calling define-syntax-rule twice.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In the code below, the
(require 'm)
fails. Interestingly, it is possible to requirem
from a sibbling submodule works, but(require (submod "." m))
doesn't work.The text was updated successfully, but these errors were encountered: