Function: calc-toggle-banner
calc-toggle-banner is an interactive and byte-compiled function
defined in calc-ext.el.gz.
Signature
(calc-toggle-banner)
Documentation
Toggle display of the friendly greeting calc normally shows above the stack.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-ext.el.gz
(defun calc-toggle-banner ()
"Toggle display of the friendly greeting calc normally shows above the stack."
(interactive)
(setq calc-show-banner (not calc-show-banner))
(calc-refresh))