Function: ps-find-wrappoint

ps-find-wrappoint is a byte-compiled function defined in ps-print.el.gz.

Signature

(ps-find-wrappoint FROM TO CHAR-WIDTH)

Source Code

;; Defined in /usr/src/emacs/lisp/ps-print.el.gz
(defun ps-find-wrappoint (from to char-width)
  (let ((avail (truncate (/ ps-width-remaining char-width)))
	(todo (- to from)))
    (if (< todo avail)
	(cons to (* todo char-width))
      (cons (+ from avail) ps-width-remaining))))