Initial commit showing the bug

This commit is contained in:
Georges Dupéron 2016-06-22 19:21:37 +02:00
commit 40c26708c8
7 changed files with 49 additions and 0 deletions

6
.gitignore vendored Normal file
View File

@ -0,0 +1,6 @@
*~
\#*
.\#*
.DS_Store
compiled/
/doc/

11
LICENSE.txt Normal file
View 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
View 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
View 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
View 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
View File

@ -0,0 +1,5 @@
#lang racket/base
(module m racket/base
(require syntax/stx)
(provide (all-from-out syntax/stx)))

View 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].