Move shared implementation file to .rktl.

This commit is contained in:
Sam Tobin-Hochstadt 2013-07-04 15:32:41 -04:00
parent 8ecb5a431e
commit 0e7f6e3ddd
4 changed files with 3 additions and 6 deletions

View File

@ -20,4 +20,4 @@
(with-syntax ([undefined undefined-expr])
;; Include the implementation.
;; See private/shared-body.rkt.
(include (lib "racket/private/shared-body.rkt")))))
(include (lib "racket/private/shared-body.rktl")))))

View File

@ -1,3 +0,0 @@
#lang info
(define compile-omit-paths '("shared-body.rkt"))

View File

@ -17,5 +17,5 @@
(lambda (stx)
(define make-check-cdr #f)
;; Include the implementation.
;; See private/shared-body.rkt.
(include "private/shared-body.rkt")))
;; See private/shared-body.rktl.
(include "private/shared-body.rktl")))