aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love1999-12-07 20:01:20 +0000
committerDave Love1999-12-07 20:01:20 +0000
commit4cbff657a7904b86f41bca68ea6e749f2f6b2bfc (patch)
tree0f3062f33cc4afcd4869cf81f936b8a376676a22
parentb46cd53651855a5614d63957d069dd04d35b262c (diff)
downloademacs-4cbff657a7904b86f41bca68ea6e749f2f6b2bfc.tar.gz
emacs-4cbff657a7904b86f41bca68ea6e749f2f6b2bfc.zip
(view-emacs-problems): New command, bound to C-h P.
-rw-r--r--lisp/help.el7
1 files changed, 7 insertions, 0 deletions
diff --git a/lisp/help.el b/lisp/help.el
index 387c4cdd730..875723f154a 100644
--- a/lisp/help.el
+++ b/lisp/help.el
@@ -83,6 +83,8 @@
83(autoload 'finder-by-keyword "finder" 83(autoload 'finder-by-keyword "finder"
84 "Find packages matching a given keyword." t) 84 "Find packages matching a given keyword." t)
85 85
86(define-key help-map "P" 'view-emacs-problems)
87
86(define-key help-map "s" 'describe-syntax) 88(define-key help-map "s" 'describe-syntax)
87 89
88(define-key help-map "t" 'help-with-tutorial) 90(define-key help-map "t" 'help-with-tutorial)
@@ -461,6 +463,11 @@ With numeric argument display information on correspondingly older changes."
461;;; (find-file-read-only (expand-file-name "FAQ" data-directory)) 463;;; (find-file-read-only (expand-file-name "FAQ" data-directory))
462 (info "(emacs-faq)")) 464 (info "(emacs-faq)"))
463 465
466(defun view-emacs-problems ()
467 "Display info on known problems with Emacs and possible workarounds."
468 (interactive)
469 (view-file (expand-file-name "PROBLEMS" data-directory)))
470
464(defun view-lossage () 471(defun view-lossage ()
465 "Display last 100 input keystrokes." 472 "Display last 100 input keystrokes."
466 (interactive) 473 (interactive)