Function: math-comp-concat
math-comp-concat is a byte-compiled function defined in calc.el.gz.
Signature
(math-comp-concat C1 C2)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc.el.gz
(defun math-comp-concat (c1 c2)
(if (and (stringp c1) (stringp c2))
(concat c1 c2)
(list 'horiz c1 c2)))