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

Long-form names for RTS options
## Summary The GHC RTS has a lot of options. Most of them only have short-form names, so that you cannot tell what they do if you don't know what the letters mean: This invocation: ``` +RTS -H2G -A32M -xc -RTS ``` is a magic incantation This example proposed version: ``` --sugested-heap-size 2G --allocation-area-size 32M --dump-stack-traces-on-exception ``` is self-evident. The short options would still be available in case you care about typing a few more characters (and for backward compatibility). ## Proposed improvements or changes Give each RTS option a long-form name along with the short-form name.
issue