From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Juanma Barranquero Newsgroups: gmane.emacs.devel Subject: Re: How to change font only in gnus-article buffer ? Date: Sat, 23 Jul 2011 14:00:17 +0200 Message-ID: References: <87pql2gqht.fsf@mauc.nl> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1311422469 16734 80.91.229.12 (23 Jul 2011 12:01:09 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sat, 23 Jul 2011 12:01:09 +0000 (UTC) Cc: emacs-devel@gnu.org To: Sander Boer Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Jul 23 14:01:05 2011 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1QkatE-0005sI-K8 for ged-emacs-devel@m.gmane.org; Sat, 23 Jul 2011 14:01:04 +0200 Original-Received: from localhost ([::1]:60691 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QkatD-0000hm-Ph for ged-emacs-devel@m.gmane.org; Sat, 23 Jul 2011 08:01:03 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:40990) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QkatB-0000g0-86 for emacs-devel@gnu.org; Sat, 23 Jul 2011 08:01:02 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qkat9-0001py-RN for emacs-devel@gnu.org; Sat, 23 Jul 2011 08:01:01 -0400 Original-Received: from mail-gy0-f169.google.com ([209.85.160.169]:39193) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qkat9-0001pD-3e for emacs-devel@gnu.org; Sat, 23 Jul 2011 08:00:59 -0400 Original-Received: by gyg13 with SMTP id 13so1895048gyg.0 for ; Sat, 23 Jul 2011 05:00:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:content-transfer-encoding; bh=rN3SjozlSVI4eKBgPjymrHJ8gtroO8Co0v1e5V7hczs=; b=HCJw/vMYszEdaiKnISZP+rQR+Jb2kQpSJpQZFJTQIE8Np/Yq4Pv2PvBPOtUPjDFWxN 2dKBLsshHpQ8mOYWFG4JjlOqRS2VNF27kYgiUa53yco+fq980YmtuDBnF6wnYsQS0Rrn AqUIjIRFVLQECTjhQqnWprrK8fWmYIxNvJmSU= Original-Received: by 10.142.122.26 with SMTP id u26mr1509413wfc.353.1311422457191; Sat, 23 Jul 2011 05:00:57 -0700 (PDT) Original-Received: by 10.142.143.6 with HTTP; Sat, 23 Jul 2011 05:00:17 -0700 (PDT) In-Reply-To: <87pql2gqht.fsf@mauc.nl> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 209.85.160.169 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:142231 Archived-At: On Fri, Jul 22, 2011 at 19:43, Sander Boer wrote: > Is it at all possible to change the default font in only one buffer ? Yes. Remap the face locally with `face-remapping-alist'. (set (make-local-variable) 'face-remapping-alist '((default variable-pit= ch))) =C2=A0 =C2=A0 Juanma