Function: ps-basic-plot-str

ps-basic-plot-str is a byte-compiled function defined in ps-print.el.gz.

Signature

(ps-basic-plot-str FROM TO STRING)

Source Code

;; Defined in /usr/src/emacs/lisp/ps-print.el.gz
(defun ps-basic-plot-str (from to string)
  (let* ((wrappoint (ps-find-wrappoint from to
				       (ps-avg-char-width 'ps-font-for-text)))
	 (to (car wrappoint))
	 (str (substring string from to)))
    (ps-output-string str)
    (ps-output " S\n")
    wrappoint))