Skip to content

Commit fa6d5ef

Browse files
committed
revision.h: add whitespace in flag definitions
In anticipation of adding longer flag names in the next change, add an extra tab to each flag definition in revision.h. Signed-off-by: Derrick Stolee <[email protected]>
1 parent e86f304 commit fa6d5ef

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

revision.h

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,20 @@
1010
#include "commit-slab-decl.h"
1111

1212
/* Remember to update object flag allocation in object.h */
13-
#define SEEN (1u<<0)
14-
#define UNINTERESTING (1u<<1)
15-
#define TREESAME (1u<<2)
16-
#define SHOWN (1u<<3)
17-
#define TMP_MARK (1u<<4) /* for isolated cases; clean after use */
18-
#define BOUNDARY (1u<<5)
19-
#define CHILD_SHOWN (1u<<6)
20-
#define ADDED (1u<<7) /* Parents already parsed and added? */
21-
#define SYMMETRIC_LEFT (1u<<8)
22-
#define PATCHSAME (1u<<9)
23-
#define BOTTOM (1u<<10)
24-
#define USER_GIVEN (1u<<25) /* given directly by the user */
25-
#define TRACK_LINEAR (1u<<26)
26-
#define ALL_REV_FLAGS (((1u<<11)-1) | USER_GIVEN | TRACK_LINEAR)
13+
#define SEEN (1u<<0)
14+
#define UNINTERESTING (1u<<1)
15+
#define TREESAME (1u<<2)
16+
#define SHOWN (1u<<3)
17+
#define TMP_MARK (1u<<4) /* for isolated cases; clean after use */
18+
#define BOUNDARY (1u<<5)
19+
#define CHILD_SHOWN (1u<<6)
20+
#define ADDED (1u<<7) /* Parents already parsed and added? */
21+
#define SYMMETRIC_LEFT (1u<<8)
22+
#define PATCHSAME (1u<<9)
23+
#define BOTTOM (1u<<10)
24+
#define USER_GIVEN (1u<<25) /* given directly by the user */
25+
#define TRACK_LINEAR (1u<<26)
26+
#define ALL_REV_FLAGS (((1u<<11)-1) | USER_GIVEN | TRACK_LINEAR)
2727

2828
#define DECORATE_SHORT_REFS 1
2929
#define DECORATE_FULL_REFS 2

0 commit comments

Comments
 (0)