[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
C-h C-b to view "Reporting Bugs" section of the manual
From: |
Glenn Morris |
Subject: |
C-h C-b to view "Reporting Bugs" section of the manual |
Date: |
Mon, 21 May 2012 15:38:04 -0400 |
User-agent: |
Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) |
Any objection to a new C-h C-b binding, to jump to the "Reporting Bugs"
section of the manual:
=== modified file 'BUGS'
*** BUGS 2012-05-21 19:32:04 +0000
--- BUGS 2012-05-21 19:35:11 +0000
***************
*** 4,13 ****
(1) how to tell when to report a bug, and
(2) how to write a useful bug report and what information it needs to have.
! You can read the read the Bugs section of the manual from inside Emacs.
! Start Emacs, do C-h i to enter Info, then m Emacs RET to get to the
! Emacs manual, then m Bugs RET to get to the section on bugs.
! Or you can use the standalone Info program in a like manner.
(Standalone Info is part of the Texinfo distribution, not part of the
Emacs distribution.)
--- 4,14 ----
(1) how to tell when to report a bug, and
(2) how to write a useful bug report and what information it needs to have.
! You can read the Bugs section of the manual from inside Emacs.
! Start Emacs, and press C-h C-b.
! Or you can use the standalone Info program:
! info emacs
! m Bugs RET
(Standalone Info is part of the Texinfo distribution, not part of the
Emacs distribution.)
=== modified file 'lisp/help.el'
*** lisp/help.el 2012-02-28 08:17:21 +0000
--- lisp/help.el 2012-05-21 19:24:45 +0000
***************
*** 54,59 ****
--- 54,60 ----
(define-key map "?" 'help-for-help)
(define-key map "\C-a" 'about-emacs)
+ (define-key map "\C-b" 'info-emacs-bug)
(define-key map "\C-c" 'describe-copying)
(define-key map "\C-d" 'view-emacs-debugging)
(define-key map "\C-e" 'view-external-packages)
=== modified file 'lisp/info.el'
*** lisp/info.el 2012-05-04 23:16:47 +0000
--- lisp/info.el 2012-05-21 19:21:25 +0000
***************
*** 683,688 ****
--- 683,694 ----
(info "emacs"))
;;;###autoload
+ (defun info-emacs-bug ()
+ "Display the \"Reporting Bugs\" section of the Emacs manual in Info mode."
+ (interactive)
+ (info "(emacs)Bugs"))
+
+ ;;;###autoload
(defun info-standalone ()
"Run Emacs as a standalone Info reader.
Usage: emacs -f info-standalone [filename]
=== modified file 'lisp/menu-bar.el'
*** lisp/menu-bar.el 2012-01-31 08:38:58 +0000
--- lisp/menu-bar.el 2012-05-21 19:24:05 +0000
***************
*** 1752,1757 ****
--- 1752,1760 ----
(define-key menu [send-emacs-bug-report]
`(menu-item ,(purecopy "Send Bug Report...") report-emacs-bug
:help ,(purecopy "Send e-mail to Emacs maintainers")))
+ (define-key menu [emacs-manual-bug]
+ `(menu-item ,(purecopy "How to Report a Bug") info-emacs-bug
+ :help ,(purecopy "Read about how to report an Emacs bug")))
(define-key menu [emacs-known-problems]
`(menu-item ,(purecopy "Emacs Known Problems") view-emacs-problems
:help ,(purecopy "Read about known problems with Emacs")))
- C-h C-b to view "Reporting Bugs" section of the manual,
Glenn Morris <=
Re: C-h C-b to view "Reporting Bugs" section of the manual, Glenn Morris, 2012/05/22