diff options
Diffstat (limited to 'docs/users_guide/9.2.1-notes.rst')
-rw-r--r-- | docs/users_guide/9.2.1-notes.rst | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/docs/users_guide/9.2.1-notes.rst b/docs/users_guide/9.2.1-notes.rst index 6e36f1dbeb..4fdf6b070b 100644 --- a/docs/users_guide/9.2.1-notes.rst +++ b/docs/users_guide/9.2.1-notes.rst @@ -125,9 +125,6 @@ Compiler For more details see :ghc-flag:`-finline-generics` and :ghc-flag:`-finline-generics-aggressively`. -- GHCi's ``:kind!`` command now expands through type synonyms in addition to type - families. See :ghci-cmd:`:kind`. - - GHC now supports a flag, :ghc-flag:`-fprof-callers=⟨name⟩`, for requesting that the compiler automatically insert cost-centres on all call-sites of the named function. @@ -147,6 +144,9 @@ Compiler GHCi ~~~~ +- GHCi's ``:kind!`` command now expands through type synonyms in addition to + type families. See :ghci-cmd:`:kind`. + - GHCi's :ghci-cmd:`:edit` command now looks for an editor in the :envvar:`VISUAL` environment variable before :envvar:`EDITOR`, following UNIX convention. @@ -156,6 +156,13 @@ GHCi ``$HOME/.ghc`` is found it will fallback to the old paths to give you time to migrate. This fallback will be removed in three releases. +- New debugger command :ghci-cmd:`:ignore` to set an ``ignore count`` for a + specified breakpoint. The next ``ignore count`` times the program hits this + breakpoint, the breakpoint is ignored, and the program doesn't stop. + +- New optional parameter added to the command :ghci-cmd:`:continue` to set the + ``ignore count`` for the current breakpoint. + Runtime system ~~~~~~~~~~~~~~ |