From: Michael Albinus Date: Thu, 20 May 2021 12:33:43 +0000 (+0200) Subject: * doc/emacs/maintaining.texi (Bug Reference): Add debbugs-browse-mode. X-Git-Tag: emacs-28.0.90~2384 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=72ec24d4808c763d8d1fd4ae45b315b9a4b4011b;p=emacs.git * doc/emacs/maintaining.texi (Bug Reference): Add debbugs-browse-mode. --- diff --git a/doc/emacs/maintaining.texi b/doc/emacs/maintaining.texi index dc24cfb449b..ed6fed63d2d 100644 --- a/doc/emacs/maintaining.texi +++ b/doc/emacs/maintaining.texi @@ -3108,3 +3108,16 @@ Note that @code{bug-reference-url-format} may also be a function in order to cater for more complex scenarios, e.g., when the part before the actual bug number has to be used to distinguish between issues and merge requests where each of them has a different URL. + +@findex debbugs-browse-mode +If your project is located on the server +@url{https://debbugs.gnu.org}, you can browse bugs in Emacs using the +@code{debbugs} package, which can be downloaded via the Package Menu +(@pxref{Packages}). This package adds the minor mode +@code{debbugs-browse-mode}, which is activated on top of +@code{bug-reference-mode} and @code{bug-reference-prog-mode} by + +@smallexample +(add-hook 'bug-reference-mode-hook 'debbugs-browse-mode) +(add-hook 'bug-reference-prog-mode-hook 'debbugs-browse-mode) +@end smallexample