Function: calc-tutorial
calc-tutorial is an autoloaded, interactive and byte-compiled function
defined in calc-misc.el.gz.
Signature
(calc-tutorial)
Documentation
Run the Emacs Info system on the Calculator Tutorial.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-misc.el.gz
;;;###autoload
(defun calc-tutorial ()
"Run the Emacs Info system on the Calculator Tutorial."
(interactive)
(if (get-buffer-window "*Calculator*")
(calc-quit))
(calc-info-goto-node "Interactive Tutorial")
(calc-other-window)
(message "Welcome to the Calc Tutorial!"))