From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: martin rudalics Newsgroups: gmane.emacs.devel Subject: Re: Menus with more items than the TTY can display Date: Sat, 19 Oct 2013 12:38:52 +0200 Message-ID: <5262613C.1020207@gmx.at> References: <83a9igrqq1.fsf@gnu.org> <5257E3B3.4070508@yandex.ru> <834n8nswas.fsf@gnu.org> <831u3nrhf9.fsf@gnu.org> <525D8938.6080208@gmx.at> <83hacipd88.fsf@gnu.org> <525E43D8.6060109@gmx.at> <83bo2pp7kd.fsf@gnu.org> <525ED0CE.9010001@gmx.at> <834n8hozdu.fsf@gnu.org> <525EDC1A.9070201@gmx.at> <83y55tnii4.fsf@gnu.org> <525FADCF.5010700@gmx.at> <83ob6nonry.fsf@gnu.org> <52601ACA.9070603@gmx.at> <83iowvokoj.fsf@gnu.org> <526025E8.20009@gmx.at> <83fvrzoe6o.fsf@gnu.org> <83eh7joda2.fsf@gnu.org> <5260E981.6020604@gmx.at> <8361suorfj.fsf@gnu.org> <52614739.9040901@gmx.at> <83ob6mmw9j.fsf@gnu.org> <83k3hamlr5.fsf@gnu.org> 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 1382179155 14816 80.91.229.3 (19 Oct 2013 10:39:15 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 19 Oct 2013 10:39:15 +0000 (UTC) Cc: emacs-devel@gnu.org To: Eli Zaretskii Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Oct 19 12:39:18 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 1VXTwD-0002tN-GL for ged-emacs-devel@m.gmane.org; Sat, 19 Oct 2013 12:39:17 +0200 Original-Received: from localhost ([::1]:32789 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VXTwD-0008Jw-5I for ged-emacs-devel@m.gmane.org; Sat, 19 Oct 2013 06:39:17 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:48506) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VXTw3-0008Ih-44 for emacs-devel@gnu.org; Sat, 19 Oct 2013 06:39:14 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VXTvu-0001Hp-HV for emacs-devel@gnu.org; Sat, 19 Oct 2013 06:39:07 -0400 Original-Received: from mout.gmx.net ([212.227.15.18]:64454) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VXTvu-0001Dx-7j for emacs-devel@gnu.org; Sat, 19 Oct 2013 06:38:58 -0400 Original-Received: from [62.47.59.243] ([62.47.59.243]) by mail.gmx.com (mrgmx002) with ESMTPA (Nemesis) id 0MS5Dm-1V8dnW1Cws-00TDZF for ; Sat, 19 Oct 2013 12:38:56 +0200 In-Reply-To: <83k3hamlr5.fsf@gnu.org> X-Provags-ID: V03:K0:SGxxzqsDofW7ooVTG3tiaOfWSRO0/oBb6KsLEVhhv1hHp6BSXK3 Pl6wv4BptrJiPf9ksWISpFmxl8SVv35N8gZo5YDQBOPzXR/bd7/YOt71SfFjMVv4mvb4S7R CAICWQUKxUynrKhn/03U4tFOrRvUEi7pupFR6X9ncUwyoKJCe3Y/bmuQDy4FxDNu6YZSRiq IJmK6FQ7820TGVsY86YVQ== X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x-2.6.x [generic] X-Received-From: 212.227.15.18 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:164353 Archived-At: > So I'm going to claim that Emacs does TRT here, and it's some problem > with this specific terminal emulator. Unless there's someone who can > explain what are we doing wrong. The behavior differs when I set `resize-mini-windows' to nil or t or when I set `max-mini-window-height' to 1. The terminal emulator does not know about these. How does that fit in here? > Here's a script I used to "re-play" the termscript (Unix aficionados > will forgive me my rudimentary skills of shell scripting): > > #! /bin/sh > # Invoke as "script FILE" > l=`wc -l $1 | awk '{ print $1 }'` > i=1 > while (expr $i "<=" $l > /dev/null); do > sed -n -e `echo $i`p $1 && sleep 2 && i=`expr $i "+" 1`; > done > > If you use this script on your terminal, do you see any incorrect > display, similar to what happens when Emacs runs? No. The display is correct. So can we be sure that this is a timing issue? martin