Function: calc-graph-find-plot
calc-graph-find-plot is a byte-compiled function defined in
calc-graph.el.gz.
Signature
(calc-graph-find-plot &optional BEFORE ALL)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-graph.el.gz
(defun calc-graph-find-plot (&optional before all)
(goto-char (point-min))
(and (re-search-forward "^s?plot[ \t]+" nil t)
(let ((beg (point)))
(goto-char (point-max))
(if (or all
(not (search-backward "," nil t))
(< (point) beg))
(progn
(goto-char beg)
(if before
(beginning-of-line)))
(or before
(re-search-forward ",[ \t]+")))
t)))