Function: ebrowse-member-bit-set-p

ebrowse-member-bit-set-p is a byte-compiled function defined in ebrowse.el.gz.

Signature

(ebrowse-member-bit-set-p MEMBER BIT)

Documentation

Value is non-nil if MEMBER's bit BIT is set.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/ebrowse.el.gz
;;; Some macros to access the FLAGS slot of a MEMBER.

(defsubst ebrowse-member-bit-set-p (member bit)
  "Value is non-nil if MEMBER's bit BIT is set."
  (/= 0 (logand (ebrowse-bs-flags member) bit)))