Function: xscheme-send-char

xscheme-send-char is an interactive and byte-compiled function defined in xscheme.el.gz.

Signature

(xscheme-send-char CHAR)

Documentation

Prompt for a character and send it to the Scheme process.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/xscheme.el.gz
(defun xscheme-send-char (char)
  "Prompt for a character and send it to the Scheme process."
  (interactive "cCharacter to send: ")
  (process-send-string xscheme-process-name (char-to-string char)))