From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Taylor Venable Newsgroups: gmane.emacs.devel Subject: Re: No XFT in CVS from this morning Date: Tue, 17 Jun 2008 12:48:07 -0400 Message-ID: <20080617124807.1510fdbe.taylor@metasyntax.net> References: <20080617112122.177cb232.taylor@metasyntax.net> <87fxrcrqu9.fsf@stupidchicken.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1213721340 9656 80.91.229.12 (17 Jun 2008 16:49:00 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 17 Jun 2008 16:49:00 +0000 (UTC) Cc: emacs-devel@gnu.org To: Chong Yidong Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Jun 17 18:49:42 2008 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1K8eND-0001TS-1J for ged-emacs-devel@m.gmane.org; Tue, 17 Jun 2008 18:49:35 +0200 Original-Received: from localhost ([127.0.0.1]:54687 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K8eMO-0004kF-Ii for ged-emacs-devel@m.gmane.org; Tue, 17 Jun 2008 12:48:44 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1K8eME-0004gU-PS for emacs-devel@gnu.org; Tue, 17 Jun 2008 12:48:35 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1K8eMD-0004fm-BP for emacs-devel@gnu.org; Tue, 17 Jun 2008 12:48:34 -0400 Original-Received: from [199.232.76.173] (port=40953 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K8eMD-0004fi-5C for emacs-devel@gnu.org; Tue, 17 Jun 2008 12:48:33 -0400 Original-Received: from mout.perfora.net ([74.208.4.196]:53881) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1K8eMC-0003UX-Qx for emacs-devel@gnu.org; Tue, 17 Jun 2008 12:48:33 -0400 Original-Received: from lionel (75-149-208-122-Illinois.hfc.comcastbusiness.net [75.149.208.122]) by mrelay.perfora.net (node=mrus1) with ESMTP (Nemesis) id 0MKpCa-1K8eM90y4l-0004br; Tue, 17 Jun 2008 12:48:31 -0400 In-Reply-To: <87fxrcrqu9.fsf@stupidchicken.com> X-Mailer: Sylpheed 2.4.8 (GTK+ 2.12.9; x86_64--netbsd) X-Provags-ID: V01U2FsdGVkX1/Xq/spOqhJrekS3rbR/JUY2ARZ80AzzKvl+19 8VSx3v34bamNATlAuNsSZsqYHIAZKy4gUHPb25sHKlMZP4Wo9f Dzed6C3LaLbvwl0E6xsDQ== X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:99353 Archived-At: On Tue, 17 Jun 2008 12:03:42 -0400 Chong Yidong wrote: > Taylor Venable writes: > > > I built Emacs from CVS this morning, and there's no font > > anti-aliasing being done. > > I can't reproduce this using latest CVS. What font are you using? >From my .emacs file: (set-face-attribute 'default nil :font "DejaVu Sans Mono-13" :slant 'normal :weight 'normal) Or from .Xresources: Xft.antialias: 1 Xft.hintstyle: hintfull #ifdef DPI_OVERRIDE Xft.dpi: 90 Emacs.font: DejaVu Sans Mono-12 #endif Which worked as expected earlier; those haven't changed. I'm wondering if it could be a library, but I cannot remember changing anything there either. I'm going back in date from CVS to find out where it last worked. It might also be worth noting that when I try to change the default face (via M-x customize-face default) to another font e.g. "DejaVu Sans" the window gets very narrow, GTK says: Gtk-CRITICAL **: gtk_window_resize: assertion `width > 0' failed And I have to kill emacs from outside (and not just an interrupt signal either; I used kill -9 to finally get rid of it). -- Taylor Venable http://real.metasyntax.net:2357/ foldr = lambda f, i, l: (len(l) == 1 and [f(l[0], i)] or [f(l[0], foldr(f, i, l[1:]))])[0]