From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Alex Schroeder Newsgroups: gmane.emacs.devel Subject: Re: Emacs mode for GDB - 2 questions Date: Sat, 01 Jun 2002 21:44:34 +0200 Sender: emacs-devel-admin@gnu.org Message-ID: <87ofeuss0t.fsf@emacswiki.org> References: <15604.58207.654159.768423@nick.uklinux.net> <200205301705.g4UH54W13563@aztec.santafe.edu> <15606.38559.603367.869040@nick.uklinux.net> <200205312127.g4VLRd915638@aztec.santafe.edu> <5xu1onrh5j.fsf@kfs2.cua.dk> <87adqfkhnm.fsf@tc-1-100.kawasaki.gol.ne.jp> NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1022960570 24159 127.0.0.1 (1 Jun 2002 19:42:50 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sat, 1 Jun 2002 19:42:50 +0000 (UTC) Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 17EEm2-0006HY-00 for ; Sat, 01 Jun 2002 21:42:50 +0200 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 17EF4e-00011Y-00 for ; Sat, 01 Jun 2002 22:02:04 +0200 Original-Received: from localhost ([127.0.0.1] helo=fencepost.gnu.org) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 17EElG-000491-00; Sat, 01 Jun 2002 15:42:02 -0400 Original-Received: from relay03.cablecom.net ([62.2.33.103]) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 17EEj4-0003kv-00 for ; Sat, 01 Jun 2002 15:39:46 -0400 Original-Received: from smtp.swissonline.ch (mail-4.swissonline.ch [62.2.32.85]) by relay03.cablecom.net (8.11.6/8.11.4/SOL/AWF/MXRELAY/06072001) with ESMTP id g51Jdhl91441 for ; Sat, 1 Jun 2002 21:39:45 +0200 (CEST) Original-Received: from confusibombus (dclient217-162-237-254.hispeed.ch [217.162.237.254]) by smtp.swissonline.ch (8.11.6/8.11.6/SMTPSOL/AWF/2002040101) with ESMTP id g51JdhE18567 for ; Sat, 1 Jun 2002 21:39:43 +0200 (MEST) Original-Received: from alex by confusibombus with local (Exim 3.12 #1 (Debian)) id 17EEni-00009a-00 for ; Sat, 01 Jun 2002 21:44:34 +0200 Original-To: emacs-devel@gnu.org In-Reply-To: <87adqfkhnm.fsf@tc-1-100.kawasaki.gol.ne.jp> (Miles Bader's message of "01 Jun 2002 08:43:25 +0900") Original-Lines: 24 User-Agent: Gnus/5.090006 (Oort Gnus v0.06) Emacs/21.2.90 (i686-pc-linux-gnu) Errors-To: emacs-devel-admin@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.0.9 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.devel:4542 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:4542 Miles Bader writes: > storm@cua.dk (Kim F. Storm) writes: >> Such modeline-less windows may be useful for other purposes, so >> we should try adding them to see what use people can find for them. > > They already exist -- just do (setq mode-line-format nil). > Works like a charm. Too bad I cannot make it frame-local... I'm trying to create new frames without any extra stuff in them. But the mode line is buffer-local... (set (make-variable-frame-local 'mode-line-format) nil) Debugger entered--Lisp error: (error "Symbol mode-line-format may not be frame-local") make-variable-frame-local(mode-line-format) (set (make-variable-frame-local (quote mode-line-format)) nil) eval((set (make-variable-frame-local (quote mode-line-format)) nil)) eval-last-sexp-1(nil) eval-last-sexp(nil) call-interactively(eval-last-sexp) Alex.