diff options
| author | Abhinav <abhinav.prsai@gmail.com> | 2025-06-04 13:07:38 +0100 |
|---|---|---|
| committer | Abhinav <abhinav.prsai@gmail.com> | 2025-06-04 13:07:38 +0100 |
| commit | c4fab12e5cced595e63af5a7e7eac2cddeae8fbc (patch) | |
| tree | a1c34ccffb7f0a0bc2ca4399ae87727d9bab8ce6 /src/defs.h | |
| parent | 3190e636d8080bf7e7b411aec4a73496db5268b9 (diff) | |
fix vertical stack resizing
Diffstat (limited to 'src/defs.h')
| -rw-r--r-- | src/defs.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -18,7 +18,7 @@ #define MIN(a, b) ((a) < (b) ? (a) : (b)) #define LENGTH(X) (sizeof X / sizeof X[0]) #define UDIST(a,b) abs((int)(a) - (int)(b)) -# define CLAMP(x, lo, hi) (( (x) < (lo) ) ? (lo) : ( (x) > (hi) ) ? (hi) : (x)) +#define CLAMP(x, lo, hi) (( (x) < (lo) ) ? (lo) : ( (x) > (hi) ) ? (hi) : (x)) #define MAXCLIENTS 99 #define BIND(mod, key, cmdstr) { (mod), XK_##key, { cmdstr }, False } #define CALL(mod, key, fnptr) { (mod), XK_##key, { .fn = fnptr }, True } |
