Uninstall `debbugs' since its use hangs Emacs on Darwin recently

This commit is contained in:
Gerard Vermeulen 2024-09-23 10:04:09 +02:00
parent 797c1f9076
commit 4e6598dc8e

View File

@ -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]]