Function: help-goto-lispref-info

help-goto-lispref-info is an interactive and byte-compiled function defined in help-mode.el.gz.

Signature

(help-goto-lispref-info)

Documentation

View the Emacs Lisp manual *info* node of the current help item.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/help-mode.el.gz
(defun help-goto-lispref-info ()
  "View the Emacs Lisp manual *info* node of the current help item."
  (interactive nil help-mode)
  (unless help-mode--current-data
    (error "No symbol to look up in the current buffer"))
  (info-lookup-symbol (plist-get help-mode--current-data :symbol)
                      'emacs-lisp-only))