Mercurial > emacs
changeset 26757:6af9f1dc59c4
(view-emacs-problems): New command, bound to C-h P.
author | Dave Love <fx@gnu.org> |
---|---|
date | Tue, 07 Dec 1999 20:01:20 +0000 |
parents | 81e194afb2e8 |
children | cbc780bdc2bd |
files | lisp/help.el |
diffstat | 1 files changed, 7 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/help.el Tue Dec 07 11:07:41 1999 +0000 +++ b/lisp/help.el Tue Dec 07 20:01:20 1999 +0000 @@ -83,6 +83,8 @@ (autoload 'finder-by-keyword "finder" "Find packages matching a given keyword." t) +(define-key help-map "P" 'view-emacs-problems) + (define-key help-map "s" 'describe-syntax) (define-key help-map "t" 'help-with-tutorial) @@ -461,6 +463,11 @@ ;;; (find-file-read-only (expand-file-name "FAQ" data-directory)) (info "(emacs-faq)")) +(defun view-emacs-problems () + "Display info on known problems with Emacs and possible workarounds." + (interactive) + (view-file (expand-file-name "PROBLEMS" data-directory))) + (defun view-lossage () "Display last 100 input keystrokes." (interactive)