Function: TeX-math-input-method-off
TeX-math-input-method-off is a byte-compiled function defined in
tex.el.
Signature
(TeX-math-input-method-off)
Documentation
Toggle off input method when entering math mode.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-math-input-method-off ()
"Toggle off input method when entering math mode."
(and TeX-math-toggle-off-input-method
(texmathp)
current-input-method
(string-match TeX-math-input-method-off-regexp current-input-method)
(deactivate-input-method)))