Function: TeX-process-set-variable

TeX-process-set-variable is a byte-compiled function defined in tex.el.

Signature

(TeX-process-set-variable NAME SYMBOL VALUE)

Documentation

Set the variable SYMBOL in the process buffer to VALUE.

Return nil only if no process buffer exists.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-process-set-variable (name symbol value)
  "Set the variable SYMBOL in the process buffer to VALUE.
Return nil only if no process buffer exists."
  (let ((buffer (TeX-process-buffer name)))
    (if buffer
        (with-current-buffer buffer
          (set symbol value)
          t)
      nil)))