diff options
| author | pepper-jelly <[email protected]> | 2021-06-14 12:09:22 +0300 |
|---|---|---|
| committer | pepper-jelly <[email protected]> | 2021-06-14 12:09:22 +0300 |
| commit | b0070eac0264dbca05e429fc1023b81a7b07e8b1 (patch) | |
| tree | 94a93bee04fbbe9e15facbef6bc4bf297410b785 /dwm.c | |
| parent | 0733c39e0c8d423bb53a389c167fcfe9dcbb7a72 (diff) | |
| download | dwm-flexipatch-b0070eac0264dbca05e429fc1023b81a7b07e8b1.tar.gz dwm-flexipatch-b0070eac0264dbca05e429fc1023b81a7b07e8b1.zip | |
use portable macro
Diffstat (limited to 'dwm.c')
| -rw-r--r-- | dwm.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -523,9 +523,9 @@ typedef struct { } Rule; #if XKB_PATCH -#define RULE(...) { .monitor = -1, .xkb_layout = -1, ##__VA_ARGS__ }, +#define RULE(...) { .monitor = -1, .xkb_layout = -1, __VA_ARGS__ }, #else -#define RULE(...) { .monitor = -1, ##__VA_ARGS__ }, +#define RULE(...) { .monitor = -1, __VA_ARGS__ }, #endif // XKB_PATCH /* Cross patch compatibility rule macro helper macros */ |
