Function: Info-help

Info-help is an interactive and byte-compiled function defined in info.el.gz.

Signature

(Info-help)

Documentation

Enter the Info tutorial.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/info.el.gz
(defun Info-help ()
  "Enter the Info tutorial."
  (interactive)
  (delete-other-windows)
  (Info-find-node "info"
		  (if (< (window-height) 23)
		      "Help-Small-Screen"
		    "Help")))