use simple-form-path instead of normalize-path
in the code that decides what to put in DrRacket's pop up menu that opens file dialogs for the subdirectories of the place where the current file is saved closes PR 14634
This commit is contained in:
parent
dc6382cee9
commit
031a0711cf
|
@ -88,7 +88,7 @@
|
||||||
(set! paths (if (and file-name?
|
(set! paths (if (and file-name?
|
||||||
path-name
|
path-name
|
||||||
(file-exists? path-name))
|
(file-exists? path-name))
|
||||||
(map path->string (explode-path (normalize-path path-name)))
|
(map path->string (explode-path (simple-form-path path-name)))
|
||||||
#f))
|
#f))
|
||||||
(let ([new-label (cond
|
(let ([new-label (cond
|
||||||
[(and paths (not (null? paths))) (last paths)]
|
[(and paths (not (null? paths))) (last paths)]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user