Function: math-latex-parse-two-args

math-latex-parse-two-args is a byte-compiled function defined in calc-lang.el.gz.

Signature

(math-latex-parse-two-args F VAL)

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-lang.el.gz
(defun math-latex-parse-two-args (f _val)
  (let (first second)
    (setq first (car (math-read-expr-list)))
    (math-read-token)
    (setq second (math-read-factor))
    (list (nth 2 f) first second)))