Function: idlwave-set-local
idlwave-set-local is a byte-compiled function defined in
idlwave.el.gz.
Signature
(idlwave-set-local VAR VALUE &optional BUFFER)
Documentation
Set the buffer-local value of VAR in BUFFER to VALUE.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/idlwave.el.gz
(defun idlwave-set-local (var value &optional buffer)
"Set the buffer-local value of VAR in BUFFER to VALUE."
(with-current-buffer (or buffer (current-buffer))
(set (make-local-variable var) value)))