Function: scheme-send-last-sexp

scheme-send-last-sexp is an interactive and byte-compiled function defined in cmuscheme.el.gz.

Signature

(scheme-send-last-sexp)

Documentation

Send the previous sexp to the inferior Scheme process.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cmuscheme.el.gz
(defun scheme-send-last-sexp ()
  "Send the previous sexp to the inferior Scheme process."
  (interactive)
  (scheme-send-region (save-excursion (backward-sexp) (point)) (point)))