From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Brand Subject: Re: org-column face Date: Thu, 15 Dec 2011 15:25:28 +0100 Message-ID: References: <4EE8B1E0.9070007@sergio.spb.ru> <4EE8BD77.1060801@sergio.spb.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([140.186.70.92]:49383) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RbCFc-0004ja-JD for emacs-orgmode@gnu.org; Thu, 15 Dec 2011 09:25:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RbCFW-0008PP-LG for emacs-orgmode@gnu.org; Thu, 15 Dec 2011 09:25:36 -0500 Received: from mail-wi0-f169.google.com ([209.85.212.169]:37770) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RbCFW-0008PJ-Gw for emacs-orgmode@gnu.org; Thu, 15 Dec 2011 09:25:30 -0500 Received: by wibhq12 with SMTP id hq12so73508wib.0 for ; Thu, 15 Dec 2011 06:25:28 -0800 (PST) In-Reply-To: <4EE8BD77.1060801@sergio.spb.ru> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Org Mode Cc: sergio Hi all On Wed, Dec 14, 2011 at 16:15, sergio wrote: > (setq default-frame-alist '( > ... > =A0 =A0 =A0 =A0(font . "terminus-10") > ... > )) Thank you for this hint. Changing my setup from set-frame-font to default-frame-alist now helps me to get the desired font for org-culumn-face for the case when I open a file /tmp/test.org manually after emacs -q -l /tmp/font.el But when I open the file with emacs -q -l /tmp/font.el /tmp/test.org then the original default font is still in effect for org-column-face unexpectedly. The only difference in "C-u C-x =3D" is the in the line xft:-unknown-DejaVu Sans Mono-normal-normal-normal-*--*-*-*-m-0-iso10646-1 (#x03) The above comparison was GNU Emacs 23.1.1 with both original org-version 6.21b or both my current Org release_7.7-537-g7e31.dirty and a minimal /tmp/font.el: (add-to-list 'default-frame-alist '(font . "DejaVu Sans Mono-12")) ;; optionally comment this out (add-to-list 'load-path "/f/git/org-mode/lisp/") (require 'org-install) What I don't understand too: When I append (require 'org) to (require 'org-install) then also "emacs -q -l /tmp/font.el" does not work any more again. What is the right way for the setup to get all this working? Michael