Function: math-tex-input-filter
math-tex-input-filter is a byte-compiled function defined in
calc-lang.el.gz.
Signature
(math-tex-input-filter STR)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-lang.el.gz
(defun math-tex-input-filter (str) ; allow parsing of 123\,456\,789.
(while (string-match "[0-9]\\\\,[0-9]" str)
(setq str (concat (substring str 0 (1+ (match-beginning 0)))
(substring str (1- (match-end 0))))))
str)