From 7bf8666856fcfdc34823b59150eb6394896b2987 Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Fri, 13 Sep 2019 21:23:24 +0200 Subject: [PATCH] Add bug reporting info and link the manual on the about screen * lisp/startup.el (fancy-about-text, normal-about-screen): Clarify that "Contribute" also describes how to report bugs. Add new link "Emacs Manual". (Bug#20697) --- lisp/startup.el | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lisp/startup.el b/lisp/startup.el index ef6234128a..243eb8c34a 100644 --- a/lisp/startup.el +++ b/lisp/startup.el @@ -1632,7 +1632,7 @@ fancy-about-text "\tMany people have contributed code included in GNU Emacs\n" :link ("Contributing" ,(lambda (_button) (info "(emacs)Contributing"))) - "\tHow to contribute improvements to Emacs\n" + "\tHow to report bugs and contribute improvements to Emacs\n" "\n" :link ("GNU and Freedom" ,(lambda (_button) (describe-gnu-project))) "\tWhy we developed GNU Emacs, and the GNU operating system\n" @@ -1648,6 +1648,8 @@ fancy-about-text :link ("Ordering Manuals" ,(lambda (_button) (view-order-manuals))) "\tBuying printed manuals from the FSF\n" "\n" + :link ("Emacs Manual" ,(lambda (_button) (info-emacs-manual))) + "\tDisplay the Emacs manual in Info mode\n" :link ("Emacs Tutorial" ,(lambda (_button) (help-with-tutorial))) "\tLearn basic Emacs keystroke commands" ,(lambda () @@ -1674,7 +1676,7 @@ fancy-about-text ,(lambda (_button) (browse-url "https://www.gnu.org/software/emacs/tour/")) "Browse https://www.gnu.org/software/emacs/tour/") - "\tSee an overview of Emacs features at gnu.org")) + "\tSee an overview of Emacs features at gnu.org\n")) "A list of texts to show in the middle part of the About screen. Each element in the list should be a list of strings or pairs `:face FACE', like `fancy-splash-insert' accepts them.") @@ -2211,7 +2213,7 @@ normal-about-screen 'action (lambda (_button) (info "(emacs)Contributing")) 'follow-link t) - (insert "\tHow to contribute improvements to Emacs\n\n") + (insert "\tHow to report bugs and contribute improvements to Emacs\n") (insert-button "GNU and Freedom" 'action (lambda (_button) (describe-gnu-project)) -- 2.20.1