diff options
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index fd09d72..a1e7d5a 100644 --- a/config.def.h +++ b/config.def.h | |||
@@ -417,3 +417,11 @@ static uint selmasks[] = { | |||
417 | [SEL_RECTANGULAR] = Mod1Mask, | 417 | [SEL_RECTANGULAR] = Mod1Mask, |
418 | }; | 418 | }; |
419 | 419 | ||
420 | /* | ||
421 | * Printable characters in ASCII, used to estimate the advance width | ||
422 | * of single wide characters. | ||
423 | */ | ||
424 | static char ascii_printable[] = | ||
425 | " !\"#$%&'()*+,-./0123456789:;<=>?" | ||
426 | "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_" | ||
427 | "`abcdefghijklmnopqrstuvwxyz{|}~"; | ||