From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Bold default face in minibuffer-only frame Date: Wed, 13 Feb 2008 12:12:44 -0500 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1202922793 5172 80.91.229.12 (13 Feb 2008 17:13:13 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 13 Feb 2008 17:13:13 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Feb 13 18:13:33 2008 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1JPLAg-0005t5-NX for ged-emacs-devel@m.gmane.org; Wed, 13 Feb 2008 18:13:23 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JPLAC-00064Y-VV for ged-emacs-devel@m.gmane.org; Wed, 13 Feb 2008 12:12:53 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JPLA8-00060s-Py for emacs-devel@gnu.org; Wed, 13 Feb 2008 12:12:48 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JPLA6-0005vv-8o for emacs-devel@gnu.org; Wed, 13 Feb 2008 12:12:47 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JPLA6-0005vS-25 for emacs-devel@gnu.org; Wed, 13 Feb 2008 12:12:46 -0500 Original-Received: from ironport2-out.pppoe.ca ([206.248.154.182]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JPLA5-0005k2-Pz for emacs-devel@gnu.org; Wed, 13 Feb 2008 12:12:45 -0500 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Ao8CAMCyskdMCpK7/2dsb2JhbACSEJtJfw X-IronPort-AV: E=Sophos;i="4.25,347,1199682000"; d="scan'208";a="14441841" Original-Received: from smtp.pppoe.ca ([65.39.196.238]) by ironport2-out.pppoe.ca with ESMTP; 13 Feb 2008 12:12:44 -0500 Original-Received: from pastel.home ([76.10.146.187]) by smtp.pppoe.ca (Internet Mail Server v1.0) with ESMTP id TTZ62544 for ; Wed, 13 Feb 2008 12:12:44 -0500 Original-Received: by pastel.home (Postfix, from userid 20848) id 40A5F828E; Wed, 13 Feb 2008 12:12:44 -0500 (EST) User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.50 (gnu/linux) X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:88959 Archived-At: I use a minibuffer-only frame and have the following setting for it: (setq minibuffer-frame-alist `((minibuffer . only) (top . -1) (left . 0) (user-position . t) (height . 1) (width . 256) (user-size . t) (vertical-scroll-bars . nil) (menu-bar-lines . 0) (tool-bar-lines . 0) ,(case window-system (mac '(font . "-apple-monaco-bold-*-*--12-*-*-*-*-*-*-*")) (t '(font . "-misc-fixed-bold-r-normal-*-13-*-*-*-*-*-*-*"))) (background-color . "grey75") (name . "emacs-minibuffer"))) With the new unicode code, the default font is not bold any more, making much more difficult to find and read. Could someone give me hint where the problem might be? Stefan