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