From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Rodolfo Medina Newsgroups: gmane.emacs.help Subject: Re: Info nodes titles font size customization Date: Sun, 05 Oct 2008 23:41:52 +0100 Organization: SunSITE.dk - Supporting Open source Message-ID: <87myhi8y1b.fsf@gmail.com> References: <87ej2v5njx.fsf@gmail.com> <87r66vuid1.fsf@gmail.com> <874p3qopx0.fsf@gmail.com> <87k5cmd85o.fsf@gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1223246469 26745 80.91.229.12 (5 Oct 2008 22:41:09 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 5 Oct 2008 22:41:09 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Oct 06 00:42:07 2008 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1KmcIg-0006rf-1I for geh-help-gnu-emacs@m.gmane.org; Mon, 06 Oct 2008 00:42:06 +0200 Original-Received: from localhost ([127.0.0.1]:57546 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KmcHc-0002uw-H6 for geh-help-gnu-emacs@m.gmane.org; Sun, 05 Oct 2008 18:41:00 -0400 Original-Path: news.stanford.edu!headwall.stanford.edu!newshub.sdsu.edu!feeder.erje.net!newsfeed.straub-nv.de!nuzba.szn.dk!pnx.dk!news.banetele.no!dotsrc.org!filter.dotsrc.org!news.dotsrc.org!not-for-mail Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.110007 (No Gnus v0.7) Emacs/22.0.50 (gnu/linux) Cancel-Lock: sha1:DL/hFfluneemqZEDZi7gup8yhlc= Original-Lines: 33 Original-NNTP-Posting-Host: 151.80.199.178 Original-X-Trace: news.sunsite.dk DXC=o[hX5ggdB[U5LoVIWDNeH\YSB=nbEKnk[4mi>jDOWoHW:AocXk=\=_TT7bXfBO; G:UKAib\KDO`hRm=c5DAkLCD\oe_i; [7bFDTAfOg^PVR8DT Original-X-Complaints-To: staff@sunsite.dk Original-Xref: news.stanford.edu gnu.emacs.help:163064 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:58405 Archived-At: Rodolfo wrote: >> Strange: this works: >> >> ;(custom-set-faces >> ;; custom-set-faces was added by Custom. >> ;; If you edit it by hand, you could mess it up, so be careful. >> ;; Your init file should contain only one such instance. >> ;; If there is more than one, they won't work right. >> '(info-title-1 ((t (:inherit info-title-2 :height 1))))) >> >> >> and this does not: >> >> (add-hook 'info-mode-hook (lambda () >> (set-face-attribute 'info-title-1 t >> :inherit info-title-2 >> :height 1 >> ))) harven writes: > You need > > (add-hook 'info-mode-hook (lambda () > (set-face-attribute 'info-title-1 nil > :inherit info-title-2 > :height 1))) Unfortunately, this doesn't work either