From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Brand Subject: Re: org-column face Date: Tue, 3 Jan 2012 08:21:44 +0100 Message-ID: References: <4EE8B1E0.9070007@sergio.spb.ru> <4EE8BD77.1060801@sergio.spb.ru> <8739bx6hy5.fsf@gnu.org> 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]:49239) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rhygu-0007L0-Ci for emacs-orgmode@gnu.org; Tue, 03 Jan 2012 02:21:49 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Rhygs-0000lf-OA for emacs-orgmode@gnu.org; Tue, 03 Jan 2012 02:21:48 -0500 Received: from mail-we0-f169.google.com ([74.125.82.169]:64453) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rhygs-0000lb-Iq for emacs-orgmode@gnu.org; Tue, 03 Jan 2012 02:21:46 -0500 Received: by werf1 with SMTP id f1so10138135wer.0 for ; Mon, 02 Jan 2012 23:21:45 -0800 (PST) In-Reply-To: <8739bx6hy5.fsf@gnu.org> 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: Bastien Cc: Org Mode , sergio Hi Bastien Setting org-column-face did not solve my issues (and in my opinion should be avoided if possible) but helped me to find out that the problem is either set-frame-font too late in my large setup or the use of default-frame-alist even when at the first place. This minimal setup works for all use cases mentioned earlier: (set-frame-font "DejaVu Sans Mono-12") (add-to-list 'load-path "/f/git/org-mode/lisp/") (require 'org-install) (require 'org) Now I am a bit confused why the above works but not (add-to-list 'default-frame-alist '(font . "DejaVu Sans Mono-12")) (add-to-list 'load-path "/f/git/org-mode/lisp/") (require 'org-install) (require 'org) because the Emacs info manual mentions default-frame-alist but not set-frame-font. Michael On Mon, Jan 2, 2012 at 20:08, Bastien wrote: > Michael Brand writes: > >> What is the right way for the setup to get all this working? > > The default face for the column view is DeJa Sans Mono for me, > working fine. > > Are things okay by just setting the face with > > =A0M-x customize-face RET org-column RET > > then picking up the font family of your choice?