Function: mh-make-local-vars
mh-make-local-vars is an autoloaded and byte-compiled function defined
in mh-utils.el.gz.
Signature
(mh-make-local-vars &rest PAIRS)
Documentation
Initialize local variables according to the variable-value PAIRS.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-utils.el.gz
;;;###mh-autoload
(defun mh-make-local-vars (&rest pairs)
"Initialize local variables according to the variable-value PAIRS."
(while pairs
(set (make-local-variable (car pairs)) (car (cdr pairs)))
(setq pairs (cdr (cdr pairs)))))