Function: fringe-custom-set-bitmap

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

Signature

(fringe-custom-set-bitmap SYMBOL VALUE)

Documentation

Set SYMBOL to a fringe bitmap VALUE.

This sets the fringe property on SYMBOL to match that of VALUE, and then force all windows to be updated on the next redisplay. You should use this for the :set parameter for customization options to pick a fringe bitmap.

Source Code

;; Defined in /usr/src/emacs/lisp/fringe.el.gz
(defun fringe-custom-set-bitmap (symbol value)
  "Set SYMBOL to a fringe bitmap VALUE.
This sets the `fringe' property on SYMBOL to match that of VALUE,
and then force all windows to be updated on the next redisplay.
You should use this for the :set parameter for customization
options to pick a fringe bitmap."
  (prog1
      (set symbol value)
    (put symbol 'fringe (get value 'fringe))
    (force-window-update)))