Function: flyspell-pre-command-hook

flyspell-pre-command-hook is an interactive and byte-compiled function defined in flyspell.el.gz.

Signature

(flyspell-pre-command-hook)

Documentation

Save the current buffer and point for Flyspell's post-command hook.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/flyspell.el.gz
;;*---------------------------------------------------------------------*/
;;*    flyspell-pre-command-hook ...                                    */
;;*---------------------------------------------------------------------*/
(defun flyspell-pre-command-hook ()
  "Save the current buffer and point for Flyspell's post-command hook."
  (interactive)
  (setq flyspell-pre-buffer (current-buffer))
  (setq flyspell-pre-point  (point))
  (setq flyspell-pre-column (current-column)))