summaryrefslogtreecommitdiff
path: root/lisp/startup.el
diff options
context:
space:
mode:
authorStefan Kangas <stefankangas@gmail.com>2019-09-13 21:23:24 +0200
committerStefan Kangas <stefankangas@gmail.com>2019-09-28 15:24:01 +0200
commit3026af7744c6eed59067bfa12be1df226d8c0d64 (patch)
tree9e398037ad754dd1f5dabe3c4f02d9523b9f2ace /lisp/startup.el
parent3a48ce43d37e6d7e14a51ddfc8ead9c67a1bec41 (diff)
downloademacs-3026af7744c6eed59067bfa12be1df226d8c0d64.tar.gz
Add bug reporting 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)
Diffstat (limited to 'lisp/startup.el')
-rw-r--r--lisp/startup.el8
1 files changed, 5 insertions, 3 deletions
diff --git a/lisp/startup.el b/lisp/startup.el
index 863e9aed16d..52d4dbb05c8 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -1640,7 +1640,7 @@ Each element in the list should be a list of strings or pairs
"\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"
@@ -1682,7 +1682,9 @@ Each element in the list should be a list of strings or pairs
,(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"
+ :link ("Emacs Manual" ,(lambda (_button) (info-emacs-manual)))
+ "\tDisplay the Emacs manual in Info mode"))
"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.")
@@ -2219,7 +2221,7 @@ Type \\[describe-distribution] for information on "))
'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\n")
(insert-button "GNU and Freedom"
'action (lambda (_button) (describe-gnu-project))