Admin message

Due to a large amount of spam we do not allow new users to create repositories, they are "external" users. If you are a new user and want to create a repository, for example for forking GHC, open a new issue on ghc/ghc using the "get-verified" issue template

ghci: the filename in :script <filename> doesn't support spaces.
## Summary Write a brief description of the issue. ## Steps to reproduce ```bash mkdir foo\ bar echo putStrLn \"foo\" > foo\ bar/foo.hs ghci GHCi, version 8.6.5: http://www.haskell.org/ghc/ :? for help Prelude> :script foo\ bar/foo.hs syntax: :script <filename> Prelude> :script "foo\ bar/foo.hs" syntax: :script <filename> Prelude> :script "foo bar/foo.hs" syntax: :script <filename> Prelude> Leaving GHCi. ``` ## Expected behavior In ghci, path tab-completes with the space escaped with `\`. I'd expect this to work. ## Environment * GHC version used: 8.6.5 * Operating System: Linux Mint
issue