Function: math-parse-fortran-vector-end

math-parse-fortran-vector-end is a byte-compiled function defined in calc-lang.el.gz.

Signature

(math-parse-fortran-vector-end X OP)

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-lang.el.gz
(defun math-parse-fortran-vector-end (x _op)
  (if math-parsing-fortran-vector
      (progn
	(setq math-parsing-fortran-vector (cons math-exp-token math-expr-data)
	      math-exp-token 'end
	      math-expr-data "\000")
	x)
    (throw 'syntax "Unmatched closing `/'")))