Function: ediff-change-saved-variable
ediff-change-saved-variable is a byte-compiled function defined in
ediff-util.el.gz.
Signature
(ediff-change-saved-variable VAR VALUE BUF-TYPE)
Source Code
;; Defined in /usr/src/emacs/lisp/vc/ediff-util.el.gz
(defun ediff-change-saved-variable (var value buf-type)
(let* ((assoc-list
(symbol-value (ediff-get-symbol-from-alist
buf-type
ediff-buffer-values-orig-alist)))
(assoc-elt (assoc var assoc-list)))
(if assoc-elt
(setcdr assoc-elt value))))