diff options
author | Mekeor Melire <mekeor@posteo.de> | 2023-10-04 20:39:32 +0000 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-10-05 13:11:46 -0400 |
commit | 5694352c05ed4fdb57a9843d8f023ca3d85992c3 (patch) | |
tree | d3cb3384a60b3b8f089f2baf7a4456aaa3a6e051 /doc | |
parent | 037464061898e4bb78d585ee4682489ced58053e (diff) |
doc: Update bug-reference configuration snippet.
* doc/contributing.texi (The Perfect Setup)
<Viewing Bugs within Emacs>: Make bug-reference-bug-regexp match
more URLs based on issues.guix.gnu.org.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Suggested-by: Simon Tournier <zimon.toutoune@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/contributing.texi | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/contributing.texi b/doc/contributing.texi index f7c72634e7..86fc65eb2d 100644 --- a/doc/contributing.texi +++ b/doc/contributing.texi @@ -428,9 +428,13 @@ configuration file: (zero-or-one (seq "#" (one-or-more (char "0-9")))))) - (seq "<https://bugs.gnu.org/" + (seq (? "<") "https://bugs.gnu.org/" (group-n 2 (one-or-more (char "0-9"))) - ">"))))) + (? ">")) + (seq (? "<") "https://issues.guix.gnu.org/" + (? "issue/") + (group-n 2 (one-or-more (char "0-9"))) + (? ">")))))) (setq bug-reference-url-format "https://issues.guix.gnu.org/%s") (require 'debbugs) |