Function: strokes-xpm-char-bit-p

strokes-xpm-char-bit-p is a byte-compiled function defined in strokes.el.gz.

Signature

(strokes-xpm-char-bit-p CHAR)

Documentation

Non-nil if CHAR represents an on or off bit in the XPM.

Source Code

;; Defined in /usr/src/emacs/lisp/strokes.el.gz
(defsubst strokes-xpm-char-bit-p (char)
  "Non-nil if CHAR represents an `on' or `off' bit in the XPM."
  (or (eq char ?\s)
      (eq char ?*)))