diff --git a/README.org b/README.org index fc0138a..93b2b56 100644 --- a/README.org +++ b/README.org @@ -4426,25 +4426,19 @@ wiki entry as the [[info:elisp#Edebug][Edebug (info)]] manual explains. :CUSTOM_ID: sec:bug-reports :END: -Listing [[lst:bug-reports]] ensures the installation of the [[info:debbugs#Top][Debbugs (info)]] extension -package to access the [[https://debbugs.gnu.org/][GNU Bug Tracker]], sets up [[info:emacs#Bug Reference][Bug Reference Mode (info)]] to -access the [[https://lists.gnu.org/mailman/listinfo/bug-gnu-emacs][bug-gnu-emacs]] mailing list, and enables [[info:emacs#Goto Address mode][Goto Address mode (info)]] to -open web links in source blocks. +Listing [[lst:bug-reports]] sets up [[info:emacs#Bug Reference][Bug Reference Mode (info)]] to access the +[[https://lists.gnu.org/mailman/listinfo/bug-gnu-emacs][bug-gnu-emacs]] mailing list. #+caption[Setup reading existing bug reports]: #+caption: Setup reading existing bug reports. #+name: lst:bug-reports #+begin_src emacs-lisp -n :results silent -(ensure-package-installation 'debbugs) - (defvar bug-reference-url-format "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=%s" "Format to use `gnu-debbugs' URL.") (add-to-list 'safe-local-eval-forms '(bug-reference-mode +1)) (put 'bug-reference-mode 'safe-local-variable 'booleanp) - -(add-hook 'org-mode-hook #'goto-address-mode) #+end_src *** [[http://yummymelon.com/devnull/writing-better-elisp-docstrings.html][Writing Better Elisp Docstrings]]