diff options
Diffstat (limited to 'x11-wm/dwm/files/unicode.html')
| -rw-r--r-- | x11-wm/dwm/files/unicode.html | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/x11-wm/dwm/files/unicode.html b/x11-wm/dwm/files/unicode.html deleted file mode 100644 index 149979d2..00000000 --- a/x11-wm/dwm/files/unicode.html +++ /dev/null @@ -1,45 +0,0 @@ -<div itemprop="articleBody" class="msgBody">
-<!--X-Body-of-Message-->
-<pre>On Tue, Dec 05, 2006 at 08:13:33AM +0100, Sander van Dijk wrote:
-> Not sure about the details, but if I'm not mistaken this has something
-> to do with font 'subsets' (that's probably not the right word). From
-> what I understand, there are some character subsets defined for utf-8,
-> and a font may support some, but not all of them. I believe xterm just
-> uses whatever the font provides, ignoring what it doesn't provide,
-> while dwm discards the font's abilities entirely if it doesn't support
-> all subsets. wmii worked this way too, but was recently patched to
-> allow 'half utf-8 capable' fonts to work.
->
-> Note that I don't really know what I'm talking about here, this is
-> just what I understood from a thread on the wmii mailinglist, I *may*
-> have gotten it completely wrong.</pre><pre>
-
-I'm not sure if it might solve the problem dmtry noticed, but
-attached patch will enforce to use the specified font even if
-necessary font sets are missing. dmtry let me know if you get
-better results with this patch applied (though I doubt it,
-better is to uncomment the missing fontsets reported by dwm in
-your ru_RU.UTF-8/XLC_LOCALE file... but well.
-
-For wmii, afair the patch Daniel Baumann supplied for Debian
-is the opposite of the patch I applied (which means the default
-of dwm)...
-
-Regards,
---
- Anselm R. Garbe >< <a rel="nofollow" href="http://suckless.org/~arg/">http://suckless.org/~arg/</a> >< GPG key: 0D73F361
-</pre><pre>diff -r 762c339325b3 draw.c
---- a/draw.c Mon Dec 04 21:01:14 2006 +0100
-+++ b/draw.c Tue Dec 05 08:43:12 2006 +0100
-@@ -179,7 +179,7 @@ setfont(const char *fontstr) {
- while(n--)
- fprintf(stderr, "missing fontset: %s\n", missing[n]);
- XFreeStringList(missing);
-- if(dc.font.set) {
-+ if(0 && dc.font.set) {
- XFreeFontSet(dpy, dc.font.set);
- dc.font.set = NULL;
- }
-</pre>
-
-</div> |
