mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-03-26 08:41:47 -07:00
mps from master: correct bs_is_single (only used in avers and checks)
Copied from Perforce Change: 161299 ServerID: perforce.ravenbrook.com
This commit is contained in:
commit
3faab3ae43
1 changed files with 1 additions and 1 deletions
|
|
@ -181,7 +181,7 @@ typedef const struct SrcIdStruct {
|
|||
#define BS_DEL(ty, s, i) BS_DIFF((s), BS_SINGLE(ty, (i)))
|
||||
#define BS_SUPER(s1, s2) (BS_INTER((s1), (s2)) == (s2))
|
||||
#define BS_SUB(s1, s2) BS_SUPER((s2), (s1))
|
||||
#define BS_IS_SINGLE(s) (((s) & ((s)-1)) == 0)
|
||||
#define BS_IS_SINGLE(s) ( ((s) != 0) && (((s) & ((s)-1)) == 0) )
|
||||
#define BS_SYM_DIFF(s1, s2) ((s1) ^ (s2))
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue