Hi all On Wed, Dec 14, 2011 at 16:15, sergio <mail...@sergio.spb.ru> wrote: > (setq default-frame-alist '( > ... > (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 =" is the <size> in the line xft:-unknown-DejaVu Sans Mono-normal-normal-normal-*-<size>-*-*-*-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