Function: lisp-get-old-input

lisp-get-old-input is a byte-compiled function defined in inf-lisp.el.gz.

Signature

(lisp-get-old-input)

Documentation

Return a string containing the sexp ending at point.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/inf-lisp.el.gz
(defun lisp-get-old-input ()
  "Return a string containing the sexp ending at point."
  (save-excursion
    (let ((end (point)))
      (backward-sexp)
      (buffer-substring (point) end))))