Function: longlines-post-command-function
longlines-post-command-function is a byte-compiled function defined in
longlines.el.gz.
Signature
(longlines-post-command-function)
Documentation
Perform line wrapping on the parts of the buffer that have changed.
This is called by post-command-hook after each command.
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/longlines.el.gz
(defun longlines-post-command-function ()
"Perform line wrapping on the parts of the buffer that have changed.
This is called by `post-command-hook' after each command."
(when (and longlines-auto-wrap longlines-wrap-beg)
(if (or (eq this-command 'yank)
(eq this-command 'yank-pop))
(longlines-decode-region (point) (mark t)))
(if longlines-showing
(longlines-show-region longlines-wrap-beg longlines-wrap-end))
(unless (or (eq this-command 'fill-paragraph)
(eq this-command 'fill-region))
(longlines-wrap-region longlines-wrap-beg longlines-wrap-end))
(setq longlines-wrap-beg nil)
(setq longlines-wrap-end nil)))