From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Dmitry Antipov Newsgroups: gmane.emacs.devel Subject: Re: Wrong frame with recent trunk [MSYS2-MinGW64] Date: Thu, 24 Jul 2014 09:52:55 +0400 Message-ID: <53D09F37.5060109@yandex.ru> References: <53D02A85.1040402@alice.it> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1406181235 32747 80.91.229.3 (24 Jul 2014 05:53:55 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 24 Jul 2014 05:53:55 +0000 (UTC) Cc: Emacs developers To: Angelo Graziosi Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Jul 24 07:53:48 2014 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 1XAByN-0002Od-NK for ged-emacs-devel@m.gmane.org; Thu, 24 Jul 2014 07:53:47 +0200 Original-Received: from localhost ([::1]:48155 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XAByN-00083Y-8B for ged-emacs-devel@m.gmane.org; Thu, 24 Jul 2014 01:53:47 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:60413) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XAByE-000815-OV for emacs-devel@gnu.org; Thu, 24 Jul 2014 01:53:45 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XABy7-0002s3-Nl for emacs-devel@gnu.org; Thu, 24 Jul 2014 01:53:38 -0400 Original-Received: from forward6l.mail.yandex.net ([84.201.143.139]:53381) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XABy7-0002rv-EX for emacs-devel@gnu.org; Thu, 24 Jul 2014 01:53:31 -0400 Original-Received: from smtp9.mail.yandex.net (smtp9.mail.yandex.net [77.88.61.35]) by forward6l.mail.yandex.net (Yandex) with ESMTP id D0D1A14E0F06; Thu, 24 Jul 2014 09:52:59 +0400 (MSK) Original-Received: from smtp9.mail.yandex.net (localhost [127.0.0.1]) by smtp9.mail.yandex.net (Yandex) with ESMTP id 79F2915204B5; Thu, 24 Jul 2014 09:52:59 +0400 (MSK) Original-Received: from 207.gprs.mts.ru (207.gprs.mts.ru [213.87.135.207]) by smtp9.mail.yandex.net (nwsmtp/Yandex) with ESMTPSA id zTrorrW1uc-qwaWs4wR; Thu, 24 Jul 2014 09:52:59 +0400 (using TLSv1 with cipher AES128-SHA (128/128 bits)) (Client certificate not present) X-Yandex-Uniq: ee033f6d-f83e-4737-8f11-f3ed2451b7ce DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1406181179; bh=QIkVtN0d7gMkD3MLAV7aaAiPmVGC55TSGOwI4AtFx5E=; h=Message-ID:Date:From:User-Agent:MIME-Version:To:CC:Subject: References:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=tjRIkwhlcxMIBrNmiG6HBGnmJZ+C2VNHGSe8/o5RPlT4R3w7oxlDEHSl6RTQrsT4F NYHZNC8mbTDngGCL669+oShurmsO7JjFL+ehfvMNjlYO8yKUNOkvZQT+pSxqzH1q3t iCS3adU6RkRkBaERLkmF9q0NqNoP3YYm1rejMyW4= Authentication-Results: smtp9.mail.yandex.net; dkim=pass header.i=@yandex.ru User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 In-Reply-To: <53D02A85.1040402@alice.it> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [generic] [fuzzy] X-Received-From: 84.201.143.139 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:173116 Archived-At: On 07/24/2014 01:35 AM, Angelo Graziosi wrote: > With recent trunk (say rev. >= r117564), my MSYS2-mingw64 (Win7 64) > Emacs builds show a strange behavior : each time I start Emacs, the > frame is 2 line shorter in height. For example if I start with > a frame of 36 line, the next start it is 34, then 32, etc. Hopefully fixed, please try revision >= 117567. Can you also try that the following: (set-frame-height nil (1+ (frame-height))) (set-frame-height nil (1- (frame-height))) (set-frame-size nil (1+ (frame-width)) (1+ (frame-height))) (set-frame-size nil (1- (frame-width)) (1- (frame-height))) works as expected on MS-Windows? Dmitry