From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: =?iso-8859-1?Q?Jan_Dj=E4rv?= Newsgroups: gmane.emacs.devel Subject: Re: Unuseful keybindings Date: Sat, 12 Jan 2013 11:03:19 +0100 Message-ID: <7EC83EE5-76E0-413C-B4F6-0959C552BDCE@swipnet.se> References: <87sj73qzvl.fsf@gmail.com> <87623zquvw.fsf@gmail.com> <87ip7zdud3.fsf@gmail.com> <87ehiiu5x7.fsf@gnu.org> <87a9t6a435.fsf@mail.jurta.org> <87d2y1glnt.fsf@mail.jurta.org> <87hanbu3ly.fsf@mail.jurta.org> <877gnk26nr.fsf@gnu.org> <87vcb4v9dp.fsf@mail.jurta.org> <87ehhst50e.fsf@mail.jurta.org> <87y5fzp5ap.fsf@mail.jurta.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 (Mac OS X Mail 6.2 \(1499\)) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1357985025 9205 80.91.229.3 (12 Jan 2013 10:03:45 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 12 Jan 2013 10:03:45 +0000 (UTC) Cc: chad , "emacs-devel@gnu.org Development" To: Juri Linkov Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Jan 12 11:04:01 2013 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1TtxwT-0001bK-DH for ged-emacs-devel@m.gmane.org; Sat, 12 Jan 2013 11:03:57 +0100 Original-Received: from localhost ([::1]:34920 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TtxwD-0006Nl-Bp for ged-emacs-devel@m.gmane.org; Sat, 12 Jan 2013 05:03:41 -0500 Original-Received: from eggs.gnu.org ([208.118.235.92]:56428) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ttxw7-0006Ne-NP for emacs-devel@gnu.org; Sat, 12 Jan 2013 05:03:39 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ttxvx-0004mW-3T for emacs-devel@gnu.org; Sat, 12 Jan 2013 05:03:35 -0500 Original-Received: from mailout.melmac.se ([62.20.26.67]:65376) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ttxvw-0004le-Qx for emacs-devel@gnu.org; Sat, 12 Jan 2013 05:03:24 -0500 Original-Received: from mail01.melmac.se (mail01.melmac.se [62.20.26.80]) by mailout.melmac.se (Postfix) with ESMTP id 727879AB6 for ; Sat, 12 Jan 2013 11:03:20 +0100 (CET) Original-Received: (qmail 23273 invoked by uid 89); 12 Jan 2013 10:03:20 -0000 Original-Received: from h-46-59-42-18.na.cust.bahnhof.se (HELO coolsville.localdomain) (boel.djarv@bdtv.se@46.59.42.18) by mail01.melmac.se with ESMTPA; 12 Jan 2013 10:03:20 -0000 Original-Received: from [172.20.199.13] (zeplin [172.20.199.13]) by coolsville.localdomain (Postfix) with ESMTPSA id 6C10D7FA06C; Sat, 12 Jan 2013 11:03:19 +0100 (CET) In-Reply-To: <87y5fzp5ap.fsf@mail.jurta.org> X-Mailer: Apple Mail (2.1499) X-detected-operating-system: by eggs.gnu.org: Solaris 10 X-Received-From: 62.20.26.67 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:156256 Archived-At: Hello. 12 jan 2013 kl. 01:50 skrev Juri Linkov : >>> When the Gnome system key M-f10 maximizes the frame, >>> Emacs doesn't reflect this change in the frame parameter >>> `fullscreen'. >>=20 >> Sounds like a bug with window manager hints, either in gnome's = setting >> them or emacs' understanding them. If you're up for it, you should be >> able to use xprop to see if gnome is setting the hint or not (it's >> entirely possible that it's just finding the biggest window size and >> setting emacs to that, which is not correct). >=20 > Actually there are two problems: >=20 > 1. The above mentioned problem occurs only on non-GTK builds. > When I tried to use xprop for a maximized frame its output was: > _NET_WM_STATE(ATOM) =3D _NET_WM_STATE_MAXIMIZED_VERT, = _NET_WM_STATE_MAXIMIZED_HORZ Sounds like we don't get property notify or does not handle it = correctly. Probably a bug. Can you file a bug report? >=20 > 2. On GTK builds there is another problem: evaluating >=20 > (set-frame-parameter nil 'fullscreen 'fullscreen) >=20 > modifies the frame parameter `fullscreen' to `fullboth', > not to `fullscreen' as requested. In this case xprop outputs: > _NET_WM_STATE(ATOM) =3D _NET_WM_STATE_FULLSCREEN This is normal, fullscreen is just an alias for fullboth. Jan D.