[project @ 2005-12-13 12:18:51 by simonmar]
authorsimonmar <unknown>
Tue, 13 Dec 2005 12:18:51 +0000 (12:18 +0000)
committersimonmar <unknown>
Tue, 13 Dec 2005 12:18:51 +0000 (12:18 +0000)
Update the bug reporting instructions, I've now installed a redirect from

  http://www.haskel.org/ghc/reportabug

to the bug reporting instructions, just in case we want to move that
page in the future.

ghc/compiler/utils/Panic.lhs
ghc/rts/RtsMessages.c

index 7ad2e5a..3d5cf17 100644 (file)
@@ -124,7 +124,7 @@ showGhcException (Panic s)
                 ++ cProjectVersion ++ "):\n\t"
                 ++ s ++ "\n\n"
                 ++ "Please report this as a compiler bug.  See:\n"
-                ++ "  http://www.haskell.org/ghc/docs/latest/html/users_guide/bug-reporting.html\n")
+                ++ "  http://www.haskell.org/ghc/reportabug\n")
 
 #if __GLASGOW_HASKELL__ < 603
 myMkTyConApp = mkAppTy
index a690614..93b87a2 100644 (file)
@@ -135,7 +135,7 @@ rtsFatalInternalErrorFn(char *s, va_list ap)
      }
      vfprintf(stderr, s, ap);
      fprintf(stderr, "\n");
-     fprintf(stderr, "    Please report this as a bug to glasgow-haskell-bugs@haskell.org,\n    or http://www.sourceforge.net/projects/ghc/\n");
+     fprintf(stderr, "    Please report this as a compiler bug.  See:\nhttp://www.haskell.org/ghc/reportabug\n");
      fflush(stderr);
   }