End file at a newline char.

Per suggestions at https://github.com/plt/racket/pull/138
This commit is contained in:
Patrick Mahoney 2012-08-23 12:24:03 -04:00 committed by Gregory Cooper
parent 06dd61afae
commit 10076ad289

View File

@ -1,29 +1,28 @@
#lang racket #lang racket
(require setup/link) (require setup/link)
#|Update this to point to your racket installation directory|# #|Update this to point to your racket installation directory|#
(define install-path "C:/Program Files/Racket/collects/frtime") (define install-path "C:/Program Files/Racket/collects/frtime")
#|Update this to point to your github clone|# #|Update this to point to your github clone|#
(define dev-path "C:/Users/user/Documents/GitHub/racket/collects/frtime") (define dev-path "C:/Users/user/Documents/GitHub/racket/collects/frtime")
#|Then call one of these functions to begin developing frtime, or to halt development.|# #|Then call one of these functions to begin developing frtime, or to halt development.|#
(define start-developing-frtime (define start-developing-frtime
(lambda () (lambda ()
(start-developing-collection dev-path install-path))) (start-developing-collection dev-path install-path)))
(define stop-developing-frtime (define stop-developing-frtime
(lambda () (lambda ()
(stop-developing-collection dev-path install-path))) (stop-developing-collection dev-path install-path)))
(define start-developing-collection (define start-developing-collection
(lambda (dev-coll-path install-coll-path) (lambda (dev-coll-path install-coll-path)
(links install-coll-path #:remove? #t) (links install-coll-path #:remove? #t)
(links dev-coll-path))) (links dev-coll-path)))
(define stop-developing-collection (define stop-developing-collection
(lambda (dev-coll-path install-coll-path) (lambda (dev-coll-path install-coll-path)
(start-developing-collection install-coll-path dev-coll-path))) (start-developing-collection install-coll-path dev-coll-path)))