Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automated Resyntax fixes #686

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 9 additions & 11 deletions drracket/drracket/private/drracket-normal.rkt
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
#lang racket/base

(require racket/gui/base
(require (for-syntax racket/base)
framework/splash
mrlib/panel-wob
racket/class
racket/cmdline
framework/splash
racket/gui/base
racket/runtime-path
(for-syntax racket/base)
mrlib/panel-wob
"frame-icon.rkt"
"dates.rkt")
"dates.rkt"
"frame-icon.rkt")

(module test racket/base)

Expand Down Expand Up @@ -67,11 +67,9 @@

(define (load-magic-images)
(set! load-magic-images void) ; run only once
(for ([magic-image (in-list magic-images)])
(unless (magic-image-bitmap magic-image)
(set-magic-image-bitmap!
magic-image
(icons-bitmap (magic-image-filename magic-image))))))
(for ([magic-image (in-list magic-images)]
#:unless (magic-image-bitmap magic-image))
(set-magic-image-bitmap! magic-image (icons-bitmap (magic-image-filename magic-image)))))

(define longest-magic-string
(apply max (map (λ (s) (length (magic-image-chars s))) magic-images)))
Expand Down
10 changes: 5 additions & 5 deletions drracket/drracket/private/profile-drs.rkt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#lang racket/base
(require racket/gui/base
racket/class
profile/sampler
profile/render-text
(require framework/preferences
profile/analyzer
framework/preferences)
profile/render-text
profile/sampler
racket/class
racket/gui/base)

#|

Expand Down
5 changes: 4 additions & 1 deletion drracket/repo-time-stamp/time-stamp.rkt
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
#lang racket/base
(require drracket/tool racket/unit framework "stamp.rkt")
(require drracket/tool
framework
racket/unit
"stamp.rkt")

(provide tool@)
(define tool@
Expand Down
Loading