Initial commit showing the bug
This commit is contained in:
commit
40c26708c8
6
.gitignore
vendored
Normal file
6
.gitignore
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
*~
|
||||
\#*
|
||||
.\#*
|
||||
.DS_Store
|
||||
compiled/
|
||||
/doc/
|
11
LICENSE.txt
Normal file
11
LICENSE.txt
Normal file
|
@ -0,0 +1,11 @@
|
|||
example-bug-track-submodule
|
||||
Copyright (c) 2016 georges
|
||||
|
||||
This package is distributed under the GNU Lesser General Public
|
||||
License (LGPL). This means that you can link example-bug-track-submodule into proprietary
|
||||
applications, provided you follow the rules stated in the LGPL. You
|
||||
can also modify this package; if you distribute a modified version,
|
||||
you must distribute it under the terms of the LGPL, which in
|
||||
particular means that you must release the source code for the
|
||||
modified software. See http://www.gnu.org/copyleft/lesser.html
|
||||
for more information.
|
4
README.md
Normal file
4
README.md
Normal file
|
@ -0,0 +1,4 @@
|
|||
example-bug-track-submodule
|
||||
===========================
|
||||
|
||||
An example for a bug report in https://github.com/racket/scribble . Nothing interesting here.
|
9
info.rkt
Normal file
9
info.rkt
Normal file
|
@ -0,0 +1,9 @@
|
|||
#lang info
|
||||
(define collection "example-bug-track-submodule")
|
||||
(define deps '("base"
|
||||
"rackunit-lib"))
|
||||
(define build-deps '("scribble-lib" "racket-doc"))
|
||||
(define scribblings '(("scribblings/example-bug-track-submodule.scrbl" ())))
|
||||
(define pkg-desc "Description Here")
|
||||
(define version "0.0")
|
||||
(define pkg-authors '(georges))
|
4
main.rkt
Normal file
4
main.rkt
Normal file
|
@ -0,0 +1,4 @@
|
|||
#lang racket/base
|
||||
|
||||
(require (submod "other.rkt" m))
|
||||
(provide (all-from-out (submod "other.rkt" m)))
|
5
other.rkt
Normal file
5
other.rkt
Normal file
|
@ -0,0 +1,5 @@
|
|||
#lang racket/base
|
||||
|
||||
(module m racket/base
|
||||
(require syntax/stx)
|
||||
(provide (all-from-out syntax/stx)))
|
10
scribblings/example-bug-track-submodule.scrbl
Normal file
10
scribblings/example-bug-track-submodule.scrbl
Normal file
|
@ -0,0 +1,10 @@
|
|||
#lang scribble/manual
|
||||
@(require (for-label example-bug-track-submodule
|
||||
racket/base))
|
||||
|
||||
@title{example-bug-track-submodule}
|
||||
@author{georges}
|
||||
|
||||
@defmodule[example-bug-track-submodule]
|
||||
|
||||
The @racket[stx-map] function is re-provided from @racketmodname[syntax/stx].
|
Loading…
Reference in New Issue
Block a user