From 10076ad28998d3bb16f59360b5c79a00041016c1 Mon Sep 17 00:00:00 2001 From: Patrick Mahoney Date: Thu, 23 Aug 2012 12:24:03 -0400 Subject: [PATCH] End file at a newline char. Per suggestions at https://github.com/plt/racket/pull/138 --- collects/frtime/develop-frtime.rkt | 55 +++++++++++++++--------------- 1 file changed, 27 insertions(+), 28 deletions(-) diff --git a/collects/frtime/develop-frtime.rkt b/collects/frtime/develop-frtime.rkt index 7071a1b590..25cce1fc7f 100644 --- a/collects/frtime/develop-frtime.rkt +++ b/collects/frtime/develop-frtime.rkt @@ -1,29 +1,28 @@ #lang racket - (require setup/link) - - - #|Update this to point to your racket installation directory|# - (define install-path "C:/Program Files/Racket/collects/frtime") - - #|Update this to point to your github clone|# - (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.|# - (define start-developing-frtime - (lambda () - (start-developing-collection dev-path install-path))) - - - (define stop-developing-frtime - (lambda () - (stop-developing-collection dev-path install-path))) - - (define start-developing-collection - (lambda (dev-coll-path install-coll-path) - (links install-coll-path #:remove? #t) - (links dev-coll-path))) - - (define stop-developing-collection - (lambda (dev-coll-path install-coll-path) - (start-developing-collection install-coll-path dev-coll-path))) - \ No newline at end of file +(require setup/link) + + +#|Update this to point to your racket installation directory|# +(define install-path "C:/Program Files/Racket/collects/frtime") + +#|Update this to point to your github clone|# +(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.|# +(define start-developing-frtime + (lambda () + (start-developing-collection dev-path install-path))) + + +(define stop-developing-frtime + (lambda () + (stop-developing-collection dev-path install-path))) + +(define start-developing-collection + (lambda (dev-coll-path install-coll-path) + (links install-coll-path #:remove? #t) + (links dev-coll-path))) + +(define stop-developing-collection + (lambda (dev-coll-path install-coll-path) + (start-developing-collection install-coll-path dev-coll-path)))