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: Re: emacs frame/window withouth minibuffer/modeline? Date: Mon, 11 Jan 2010 19:58:20 -0500 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1263257927 16857 80.91.229.12 (12 Jan 2010 00:58:47 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 12 Jan 2010 00:58:47 +0000 (UTC) Cc: Emacs development discussions To: joakim@verona.se Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Jan 12 01:58:40 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 1NUV5h-0003Rf-W3 for ged-emacs-devel@m.gmane.org; Tue, 12 Jan 2010 01:58:39 +0100 Original-Received: from localhost ([127.0.0.1]:42071 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NUV5h-0006cK-Lx for ged-emacs-devel@m.gmane.org; Mon, 11 Jan 2010 19:58:37 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NUV5W-0006Xk-Uw for emacs-devel@gnu.org; Mon, 11 Jan 2010 19:58:26 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NUV5S-0006Ws-Vj for emacs-devel@gnu.org; Mon, 11 Jan 2010 19:58:26 -0500 Original-Received: from [199.232.76.173] (port=43064 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NUV5S-0006Wp-Nt for emacs-devel@gnu.org; Mon, 11 Jan 2010 19:58:22 -0500 Original-Received: from ironport2-out.teksavvy.com ([206.248.154.181]:14717 helo=ironport2-out.pppoe.ca) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NUV5S-0007bV-Ci for emacs-devel@gnu.org; Mon, 11 Jan 2010 19:58:22 -0500 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Al8FAOdXS0vO+KPG/2dsb2JhbACBRNUfhC8Eiig X-IronPort-AV: E=Sophos;i="4.49,259,1262581200"; d="scan'208";a="53555487" Original-Received: from 206-248-163-198.dsl.teksavvy.com (HELO ceviche.home) ([206.248.163.198]) by ironport2-out.pppoe.ca with ESMTP; 11 Jan 2010 19:58:20 -0500 Original-Received: by ceviche.home (Postfix, from userid 20848) id 85AB8B4649; Mon, 11 Jan 2010 19:58:20 -0500 (EST) In-Reply-To: (joakim@verona.se's message of "Tue, 12 Jan 2010 00:02:45 +0100") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.91 (gnu/linux) X-detected-operating-system: 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:119839 Archived-At: > I'd like to make a fullscreen image viewer in Emacs for reading scanned > pages. I'd like only the buffer to show, no minibuffer, no modeline, > but cant really find anything about if its possible or not. Any hints? To get rid of the mode-line: (setq mode-line-format nil) To get rid of the minibuffer: can't do that, tho you can create a new frame without minibuffer by specifying a value nil for the `minibuffer' frame parameter. Stefan