From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: YAMAMOTO Mitsuharu Newsgroups: gmane.emacs.devel Subject: Re: Emacs 23 Mac port Date: Sat, 02 Jan 2010 13:21:42 +0900 Organization: Faculty of Science, Chiba University Message-ID: References: <2282B3B4-D844-4E26-BB94-9F79EEA2E847@gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII X-Trace: ger.gmane.org 1262406124 17572 80.91.229.12 (2 Jan 2010 04:22:04 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 2 Jan 2010 04:22:04 +0000 (UTC) Cc: emacs-devel@gnu.org To: Leo Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Jan 02 05:21:57 2010 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 1NQvUz-0001oq-Bj for ged-emacs-devel@m.gmane.org; Sat, 02 Jan 2010 05:21:57 +0100 Original-Received: from localhost ([127.0.0.1]:59346 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NQvUz-0002Sa-Nt for ged-emacs-devel@m.gmane.org; Fri, 01 Jan 2010 23:21:57 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NQvUu-0002SK-Hj for emacs-devel@gnu.org; Fri, 01 Jan 2010 23:21:52 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NQvUq-0002Ro-33 for emacs-devel@gnu.org; Fri, 01 Jan 2010 23:21:52 -0500 Original-Received: from [199.232.76.173] (port=36650 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NQvUp-0002Rl-Tp for emacs-devel@gnu.org; Fri, 01 Jan 2010 23:21:47 -0500 Original-Received: from ntp.math.s.chiba-u.ac.jp ([133.82.132.2]:60619 helo=mathmail.math.s.chiba-u.ac.jp) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NQvUp-0001Yl-I0 for emacs-devel@gnu.org; Fri, 01 Jan 2010 23:21:48 -0500 Original-Received: from church.math.s.chiba-u.ac.jp (church [133.82.132.36]) by mathmail.math.s.chiba-u.ac.jp (Postfix) with ESMTP id 1926AC0557; Sat, 2 Jan 2010 13:21:42 +0900 (JST) In-Reply-To: User-Agent: Wanderlust/2.14.0 (Africa) SEMI/1.14.6 (Maruoka) FLIM/1.14.8 (=?ISO-8859-4?Q?Shij=F2?=) APEL/10.6 Emacs/22.3 (sparc-sun-solaris2.8) MULE/5.0 (SAKAKI) X-detected-operating-system: by monty-python.gnu.org: NetBSD 3.0 (DF) 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:119251 Archived-At: >>>>> On Sat, 02 Jan 2010 01:27:32 +0000, Leo said: > However, my old font setting under ns does not seem to work: Try replacing "_" in the family names with " ". The font backend driver of the Mac port, as well as the ones in X11, doesn't avoid spaces in font family names. To get font family names, you can use `(font-family-list)' or check the result of `(x-select-font)' as in the GTK+ build. > Also is there a way to disable tool-bar in such a way that it does not > display the tool-bar first and then hide it and shrink the window as > is done by (tool-bar-mode -1). I assume you are using initial-frame-alist or something like that. This behavior can also be observed in the GTK+ build, and a known workaround is to use X resources. It is also applicable to the Mac port. For permanent setting: $ defaults write org.gnu.Emacs 'Emacs*ToolBar' 0 (This corresponds to adding the line 'Emacs*ToolBar:0' into ~/.Xresources) For temporary setting: $ .../Emacs.app/Contents/MacOS/Emacs -xrm 'Emacs*ToolBar:0' YAMAMOTO Mitsuharu mituharu@math.s.chiba-u.ac.jp