Function: woman-break-table
woman-break-table is a byte-compiled function defined in woman.el.gz.
Signature
(woman-break-table START-COLUMN TO START)
Source Code
;; Defined in /usr/src/emacs/lisp/woman.el.gz
;; ".TE -- End of table code for the tbl processor."
;; Turn filling and adjusting back on.
(defun woman-break-table (start-column to start)
(while (< (point) to)
(move-to-column woman-fill-column)
(if (eolp)
(forward-line)
(if (and (search-backward " " start t)
(> (current-column) start-column))
(progn
(insert-char ?\n 1)
(insert-char ?\s (- start-column 5)))
(forward-line)))))