aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/info.el
diff options
context:
space:
mode:
authorGlenn Morris2012-05-21 20:31:34 -0700
committerGlenn Morris2012-05-21 20:31:34 -0700
commit3290526dde9b633b7a032de36fd961347f1bfe88 (patch)
tree797527a8e595d0a48e9512b0945942b35d006b93 /lisp/info.el
parentc463dd01c78224c450cb8be823e6ac524ba39ce6 (diff)
downloademacs-3290526dde9b633b7a032de36fd961347f1bfe88.tar.gz
emacs-3290526dde9b633b7a032de36fd961347f1bfe88.zip
Add "How to Report a Bug" to Help menu
* lisp/info.el (info-emacs-bug): New command. * lisp/menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help. * lisp/mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
Diffstat (limited to 'lisp/info.el')
-rw-r--r--lisp/info.el8
1 files changed, 7 insertions, 1 deletions
diff --git a/lisp/info.el b/lisp/info.el
index 1e3b14632e6..367d9d0a9ef 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -1,6 +1,6 @@
1;; info.el --- info package for Emacs 1;; info.el --- info package for Emacs
2 2
3;; Copyright (C) 1985-1986, 1992-2012 Free Software Foundation, Inc. 3;; Copyright (C) 1985-1986, 1992-2012 Free Software Foundation, Inc.
4 4
5;; Maintainer: FSF 5;; Maintainer: FSF
6;; Keywords: help 6;; Keywords: help
@@ -683,6 +683,12 @@ See a list of available Info commands in `Info-mode'."
683 (info "emacs")) 683 (info "emacs"))
684 684
685;;;###autoload 685;;;###autoload
686(defun info-emacs-bug ()
687 "Display the \"Reporting Bugs\" section of the Emacs manual in Info mode."
688 (interactive)
689 (info "(emacs)Bugs"))
690
691;;;###autoload
686(defun info-standalone () 692(defun info-standalone ()
687 "Run Emacs as a standalone Info reader. 693 "Run Emacs as a standalone Info reader.
688Usage: emacs -f info-standalone [filename] 694Usage: emacs -f info-standalone [filename]