Compare commits

...

2 Commits

Author SHA1 Message Date
Suzanne Soy
8afaab2988 Changed my name :) 2021-03-04 21:08:45 +00:00
Georges Dupéron
9747adce0f Without the submodule, the occurrence of stx-map is correctly linked. 2016-06-22 19:24:16 +02:00
5 changed files with 7 additions and 8 deletions

View File

@ -1,5 +1,5 @@
example-bug-track-submodule example-bug-track-submodule
Copyright (c) 2016 georges Copyright (c) 2016 Suzanne Soy
This package is distributed under the GNU Lesser General Public This package is distributed under the GNU Lesser General Public
License (LGPL). This means that you can link example-bug-track-submodule into proprietary License (LGPL). This means that you can link example-bug-track-submodule into proprietary

View File

@ -6,4 +6,4 @@
(define scribblings '(("scribblings/example-bug-track-submodule.scrbl" ()))) (define scribblings '(("scribblings/example-bug-track-submodule.scrbl" ())))
(define pkg-desc "Description Here") (define pkg-desc "Description Here")
(define version "0.0") (define version "0.0")
(define pkg-authors '(georges)) (define pkg-authors '(|Suzanne Soy|))

View File

@ -1,4 +1,4 @@
#lang racket/base #lang racket/base
(require (submod "other.rkt" m)) (require "other.rkt")
(provide (all-from-out (submod "other.rkt" m))) (provide (all-from-out "other.rkt"))

View File

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

View File

@ -3,7 +3,7 @@
racket/base)) racket/base))
@title{example-bug-track-submodule} @title{example-bug-track-submodule}
@author{georges} @author[@author+email["Suzanne Soy" "racket@suzanne.soy"]]
@defmodule[example-bug-track-submodule] @defmodule[example-bug-track-submodule]