]> git.eshelyaron.com Git - emacs.git/commitdiff
(view-emacs-problems): New command, bound to C-h P.
authorDave Love <fx@gnu.org>
Tue, 7 Dec 1999 20:01:20 +0000 (20:01 +0000)
committerDave Love <fx@gnu.org>
Tue, 7 Dec 1999 20:01:20 +0000 (20:01 +0000)
lisp/help.el

index 387c4cdd730b2f9b4c460a7cc6576cc154d981e9..875723f154a18e69c98ca0518c450c16e2f5f212 100644 (file)
@@ -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 @@ With numeric argument display information on correspondingly older changes."
 ;;;  (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)