aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-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)