Function: xscheme-send-previous-expression
xscheme-send-previous-expression is an interactive and byte-compiled
function defined in xscheme.el.gz.
Signature
(xscheme-send-previous-expression)
Documentation
Send the expression to the left of point to the Scheme process.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/xscheme.el.gz
(defun xscheme-send-previous-expression ()
"Send the expression to the left of `point' to the Scheme process."
(interactive)
(let ((end (point)))
(xscheme-send-region (save-excursion (backward-sexp) (point)) end)))