diff options
-rw-r--r-- | init/functions.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/init/functions.el b/init/functions.el index ef4c8cef79d9..640957f109e1 100644 --- a/init/functions.el +++ b/init/functions.el @@ -254,9 +254,9 @@ Including indent-buffer, which should not be called automatically on save." ;; is selected. ;; ;; Upstream issue: https://github.com/commercialhaskell/intero/issues/569 -(advice-add 'intero-repl :before (lambda (&rest r) (intero-fix-ghci-panic)) +(advice-add 'intero-repl :after (lambda (&rest r) (intero-fix-ghci-panic)) '((name . intero-panic-fix))) -(advice-add 'intero-repl-load :before (lambda (&rest r) (intero-fix-ghci-panic)) +(advice-add 'intero-repl-load :after (lambda (&rest r) (intero-fix-ghci-panic)) '((name . intero-panic-fix))) (provide 'functions) |