diff options
| author | Filip Wandzio <contact@philw.dev> | 2025-12-30 02:45:11 +0100 |
|---|---|---|
| committer | Filip Wandzio <contact@philw.dev> | 2025-12-30 02:45:11 +0100 |
| commit | 4c90d1d9e4092f9ee0106d316829144653a276ea (patch) | |
| tree | cba5e7697a1334da068c5fa5e5951e00696fb903 /src/drw/drw.c | |
| parent | 11b1ff4691ff3e0f8346e7431fa3f90cc846fc5d (diff) | |
| download | dwm-4c90d1d9e4092f9ee0106d316829144653a276ea.tar.gz dwm-4c90d1d9e4092f9ee0106d316829144653a276ea.zip | |
Split monolithic dwm.h into modular headers and group them by it's functionalities
The new plan of refactoring this project is to split entire monolithic codebase into separate, (kind of) independent modules. This will help with understanding the code by turning off modules and deciding which ones require some work.
Signed-off-by: Filip Wandzio <contact@philw.dev>
Diffstat (limited to 'src/drw/drw.c')
| -rw-r--r-- | src/drw/drw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drw/drw.c b/src/drw/drw.c index 05420c0..5e90c2c 100644 --- a/src/drw/drw.c +++ b/src/drw/drw.c | |||
| @@ -111,7 +111,7 @@ static Fnt *xfont_create(Drw *drw, const char *fontname, FcPattern *fontpattern) | |||
| 111 | /* Using the pattern found at font->xfont->pattern does not | 111 | /* Using the pattern found at font->xfont->pattern does not |
| 112 | * yield the same substitution results as using the pattern | 112 | * yield the same substitution results as using the pattern |
| 113 | * returned by FcNameParse; using the latter results in the | 113 | * returned by FcNameParse; using the latter results in the |
| 114 | * desired fallback behaviour whereas the former just results in | 114 | * desired fallback behavior whereas the former just results in |
| 115 | * missing-character rectangles being drawn, at least with some | 115 | * missing-character rectangles being drawn, at least with some |
| 116 | * fonts. */ | 116 | * fonts. */ |
| 117 | if (!(xfont = | 117 | if (!(xfont = |
