Function: msb-custom-set

msb-custom-set is a byte-compiled function defined in msb.el.gz.

Signature

(msb-custom-set SYMBOL VALUE)

Documentation

Set the value of custom variables for msb.

Source Code

;; Defined in /usr/src/emacs/lisp/msb.el.gz
(defun msb-custom-set (symbol value)
  "Set the value of custom variables for msb."
  (set symbol value)
  (if (and (featurep 'msb) msb-mode)
      ;; wait until package has been loaded before bothering to update
      ;; the buffer lists.
      (msb-menu-bar-update-buffers t)))