From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Matthias Meulien Newsgroups: gmane.emacs.help Subject: Re: Frames without toolbar and menu Date: 05 Sep 2002 22:26:06 +0200 Organization: ...!#$@~? Sender: help-gnu-emacs-admin@gnu.org Message-ID: References: NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1031258677 12973 127.0.0.1 (5 Sep 2002 20:44:37 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Thu, 5 Sep 2002 20:44:37 +0000 (UTC) Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 17n3US-0003N5-00 for ; Thu, 05 Sep 2002 22:44:36 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10) id 17n3W5-0000FS-00; Thu, 05 Sep 2002 16:46:17 -0400 Original-Path: shelby.stanford.edu!nntp.stanford.edu!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!fr.usenet-edu.net!usenet-edu.net!proxad.net!proxad.net!feeder2-1.proxad.net!news1-2.free.fr!not-for-mail Mail-Copies-To: never Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 Original-Lines: 20 Original-NNTP-Posting-Date: 05 Sep 2002 22:37:43 MEST Original-NNTP-Posting-Host: 62.147.162.185 Original-X-Trace: 1031258263 news1-2.free.fr 487 62.147.162.185 Original-X-Complaints-To: abuse@proxad.net Original-Xref: nntp.stanford.edu gnu.emacs.help:104518 Original-To: help-gnu-emacs@gnu.org Errors-To: help-gnu-emacs-admin@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.help:1077 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:1077 Glen Foy wrote: > Is there a way to create frames without the toolbar and menu? (...) To create a new frame without toolbar nor menubar : (make-frame '((tool-bar-lines . nil) (menu-bar-lines . nil))) Read the `Frames and X Window' info node to learn how to turn off the corresponding modes. To make this behavior persistent add the following two lines in the .emacs file: (menu-bar-mode -1) (tool-bar-mode -1) Bye. -- Matthias