Function: expand-previous-word

expand-previous-word is a byte-compiled function defined in expand.el.gz.

Signature

(expand-previous-word)

Documentation

Return the previous word.

Source Code

;; Defined in /usr/src/emacs/lisp/expand.el.gz
(defun expand-previous-word ()
  "Return the previous word."
  (save-excursion
    (let ((p (point)))
      (backward-word 1)
      (buffer-substring p (point)))))