Aligning the macros.
This commit is contained in:
		
							
								
								
									
										6
									
								
								st.c
									
									
									
									
									
								
							
							
						
						
									
										6
									
								
								st.c
									
									
									
									
									
								
							| @@ -72,9 +72,11 @@ char *argv0; | |||||||
| #define ISCONTROL(c)		(ISCONTROLC0(c) || ISCONTROLC1(c)) | #define ISCONTROL(c)		(ISCONTROLC0(c) || ISCONTROLC1(c)) | ||||||
| #define ISDELIM(u)		(utf8strchr(worddelimiters, u) != NULL) | #define ISDELIM(u)		(utf8strchr(worddelimiters, u) != NULL) | ||||||
| #define LIMIT(x, a, b)		(x) = (x) < (a) ? (a) : (x) > (b) ? (b) : (x) | #define LIMIT(x, a, b)		(x) = (x) < (a) ? (a) : (x) > (b) ? (b) : (x) | ||||||
| #define ATTRCMP(a, b) ((a).mode != (b).mode || (a).fg != (b).fg || (a).bg != (b).bg) | #define ATTRCMP(a, b)		((a).mode != (b).mode || (a).fg != (b).fg || \ | ||||||
|  | 				(a).bg != (b).bg) | ||||||
| #define IS_SET(flag)		((term.mode & (flag)) != 0) | #define IS_SET(flag)		((term.mode & (flag)) != 0) | ||||||
| #define TIMEDIFF(t1, t2) ((t1.tv_sec-t2.tv_sec)*1000 + (t1.tv_nsec-t2.tv_nsec)/1E6) | #define TIMEDIFF(t1, t2)	((t1.tv_sec-t2.tv_sec)*1000 + \ | ||||||
|  | 				(t1.tv_nsec-t2.tv_nsec)/1E6) | ||||||
| #define MODBIT(x, set, bit)	((set) ? ((x) |= (bit)) : ((x) &= ~(bit))) | #define MODBIT(x, set, bit)	((set) ? ((x) |= (bit)) : ((x) &= ~(bit))) | ||||||
|  |  | ||||||
| #define TRUECOLOR(r,g,b)	(1 << 24 | (r) << 16 | (g) << 8 | (b)) | #define TRUECOLOR(r,g,b)	(1 << 24 | (r) << 16 | (g) << 8 | (b)) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user