Function: gnus-summary-make-local-variables
gnus-summary-make-local-variables is a byte-compiled function defined
in gnus-sum.el.gz.
Signature
(gnus-summary-make-local-variables)
Documentation
Make all the local summary buffer variables.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-make-local-variables ()
"Make all the local summary buffer variables."
(dolist (local gnus-summary-local-variables)
(if (consp local)
(let ((global (if (eq (cdr local) 'global)
;; Copy the global value of the variable.
(symbol-value (car local))
;; Use the value from the list.
(eval (cdr local) t))))
(set (make-local-variable (car local)) global))
;; Simple nil-valued local variable.
(set (make-local-variable local) nil))))