Variable: xscheme-startup-message

xscheme-startup-message is a customizable variable defined in xscheme.el.gz.

Value

"This is the Scheme process buffer.\nType \\[xscheme-send-previous-expression] to evaluate the expression before point.\nType \\[xscheme-send-control-g-interrupt] to abort evaluation.\nType \\[describe-mode] for more information.\n\n"

Documentation

String to insert into Scheme process buffer first time it is started.

Is processed with substitute-command-keys first.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/xscheme.el.gz
(defcustom xscheme-startup-message
  "This is the Scheme process buffer.
Type \\[xscheme-send-previous-expression] to evaluate the expression before point.
Type \\[xscheme-send-control-g-interrupt] to abort evaluation.
Type \\[describe-mode] for more information.

"
  "String to insert into Scheme process buffer first time it is started.
Is processed with `substitute-command-keys' first."
  :type 'string)