Function: math-define-binop
math-define-binop is a byte-compiled function defined in
calc-prog.el.gz.
Signature
(math-define-binop OP IDENT ARG1 REST)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-prog.el.gz
(defun math-define-binop (op ident arg1 rest)
(if rest
(math-define-binop op ident
(list op arg1 (car rest))
(cdr rest))
(or arg1 ident)))