From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: Options menu is broken on CVS Date: Fri, 09 Sep 2005 16:46:25 +0300 Message-ID: References: <200509062007.04648.ismail@uludag.org.tr> <17181.65500.337376.386116@farnswood.snap.net.nz> <200509062349.18090.ismail@uludag.org.tr> <17182.8135.530028.132576@farnswood.snap.net.nz> <17183.25577.926363.814486@farnswood.snap.net.nz> <17183.48402.585456.467736@farnswood.snap.net.nz> Reply-To: Eli Zaretskii NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1126274745 12947 80.91.229.2 (9 Sep 2005 14:05:45 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 9 Sep 2005 14:05:45 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Sep 09 16:05:35 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1EDjSf-0003ss-3I for ged-emacs-devel@m.gmane.org; Fri, 09 Sep 2005 16:02:37 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EDjSe-0006pf-Kk for ged-emacs-devel@m.gmane.org; Fri, 09 Sep 2005 10:02:36 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1EDjEh-0001Ln-Hz for emacs-devel@gnu.org; Fri, 09 Sep 2005 09:48:11 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1EDjEe-0001KL-MN for emacs-devel@gnu.org; Fri, 09 Sep 2005 09:48:10 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EDjEd-0001J6-QT for emacs-devel@gnu.org; Fri, 09 Sep 2005 09:48:07 -0400 Original-Received: from [192.114.186.66] (helo=romy.inter.net.il) by monty-python.gnu.org with esmtp (Exim 4.34) id 1EDjHk-0004iV-FL for emacs-devel@gnu.org; Fri, 09 Sep 2005 09:51:20 -0400 Original-Received: from HOME-C4E4A596F7 (IGLD-83-130-241-186.inter.net.il [83.130.241.186]) by romy.inter.net.il (MOS 3.5.8-GR) with ESMTP id CIM07204 (AUTH halo1); Fri, 9 Sep 2005 16:46:24 +0300 (IDT) Original-To: nickrob@snap.net.nz, ismail@uludag.org.tr, emacs-devel@gnu.org In-reply-to: (message from Eli Zaretskii on Fri, 09 Sep 2005 14:50:55 +0300) 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:42781 Archived-At: > Date: Fri, 09 Sep 2005 14:50:55 +0300 > From: Eli Zaretskii > Cc: ismail@uludag.org.tr, emacs-devel@gnu.org > > My interim conclusion is that the changes back in 2004 were not the > one that caused the current problem. I will dig some more to > understand what is the real cause of that, and describe my findings > here. I debugged this. It's like you said earlier in this thread: This change 2005-08-26 David Reitter * menu-bar.el (truncate-lines, write-file, print-buffer) (ps-print-buffer-faces, ps-print-buffer, split-window): Disable menu items when the frame they refer to is invisible, or when they refer to a buffer and the minibuffer is selected. will break things if you try to access one of these functions from the menubar having configured --without-x. The problem is indeed that this change caused the menus to reference menu-updating-frame, which is not defined in the non-X version. I installed a change that avoids referencing that variable on non-multiframe displays. Ismail, please check that the new version works for you.