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: Trunk emacs infelicity with linum mode Date: Wed, 10 Sep 2014 22:15:26 +0300 Message-ID: <831trj9tip.fsf@gnu.org> References: <87zjeix7hg.fsf@glaurung.internal.golden-gryphon.com> <838um1gar9.fsf@gnu.org> <87ppfdyhpf.fsf@glaurung.internal.golden-gryphon.com> <8361h5g7mv.fsf@gnu.org> <87zjehw5cs.fsf@glaurung.internal.golden-gryphon.com> <834mwog0u0.fsf@gnu.org> <87wq9kd5y3.fsf@glaurung.internal.golden-gryphon.com> <83oauve75i.fsf@gnu.org> <87lhpxaopi.fsf@glaurung.internal.golden-gryphon.com> <83vbp1deta.fsf@gnu.org> <540ACB6A.5020402@gmx.at> <540AED8A.9030000@gmx.at> <83ha0jcv31.fsf@gnu.org> <540C9F76.2020606@gmx.at> <831trncjhf.fsf@gnu.org> <540D7793.6010704@gmx.at> <83mwa9aqdq.fsf@gnu.org> <541005DC.9060704@gmx.at> <83a9679xyf.fsf@gnu.org> <5410A059.9000102@gmx.at> Reply-To: Eli Zaretskii NNTP-Posting-Host: plane.gmane.org X-Trace: ger.gmane.org 1410376559 10454 80.91.229.3 (10 Sep 2014 19:15:59 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 10 Sep 2014 19:15:59 +0000 (UTC) Cc: srivasta@ieee.org, emacs-devel@gnu.org To: martin rudalics Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Sep 10 21:15:52 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 1XRnMt-0008CM-1Q for ged-emacs-devel@m.gmane.org; Wed, 10 Sep 2014 21:15:51 +0200 Original-Received: from localhost ([::1]:58276 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XRnMs-0003l7-DZ for ged-emacs-devel@m.gmane.org; Wed, 10 Sep 2014 15:15:50 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:43854) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XRnMQ-0003kx-0X for emacs-devel@gnu.org; Wed, 10 Sep 2014 15:15:26 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XRnMJ-0006Fs-Ku for emacs-devel@gnu.org; Wed, 10 Sep 2014 15:15:21 -0400 Original-Received: from mtaout28.012.net.il ([80.179.55.184]:54973) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XRnMJ-0006FQ-Ci for emacs-devel@gnu.org; Wed, 10 Sep 2014 15:15:15 -0400 Original-Received: from conversion-daemon.mtaout28.012.net.il by mtaout28.012.net.il (HyperSendmail v2007.08) id <0NBP00J0096LSP00@mtaout28.012.net.il> for emacs-devel@gnu.org; Wed, 10 Sep 2014 22:13:52 +0300 (IDT) Original-Received: from HOME-C4E4A596F7 ([87.69.4.28]) by mtaout28.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0NBP00BS19F46080@mtaout28.012.net.il>; Wed, 10 Sep 2014 22:13:52 +0300 (IDT) In-reply-to: <5410A059.9000102@gmx.at> X-012-Sender: halo1@inter.net.il X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 80.179.55.184 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:174167 Archived-At: > Date: Wed, 10 Sep 2014 21:02:49 +0200 > From: martin rudalics > CC: srivasta@ieee.org, emacs-devel@gnu.org > > > (gdb) break Fx_create_frame > > Breakpoint 3 at 0x120132f: file w32fns.c, line 4414. > > (gdb) disable 3 > > (gdb) break Fredraw_display > > Breakpoint 4 at 0x100805d: file dispnew.c, line 3023. > > (gdb) r -Q > > Starting program: d:\usr\eli\emacs\emacs-trunk_2014-09-01\src\emacs.exe -Q > > Breakpoint 4, Fredraw_display () at dispnew.c:3023 > > 3023 FOR_EACH_FRAME (tail, frame) > > (gdb) enable 3 > > (gdb) c > > Continuing. > > Breakpoint 3, Fx_create_frame (parameters=117344758) at w32fns.c:4414 > > 4414 int minibuffer_only = 0; > > (gdb) until 4678 > > Why "until 4678"? That's where the call to adjust_frame_size was on Sep 1, which was the date I took the trunk snapshot where I investigated this. When I do the same with today's trunk, I indeed see that adjust_frame_size is called with the 10x10 frame size. So something has changed during the last 10 days that caused this difference in behavior.