From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Chong Yidong" Newsgroups: gmane.emacs.devel Subject: Electric-pop-up-window [PATCH] Date: Sun, 2 Jan 2005 04:58:22 -0500 (EST) Message-ID: <2201.220.255.95.147.1104659902.squirrel@220.255.95.147> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Trace: sea.gmane.org 1104659984 20167 80.91.229.6 (2 Jan 2005 09:59:44 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 2 Jan 2005 09:59:44 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Jan 02 10:59:38 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1Cl2WP-0007su-00 for ; Sun, 02 Jan 2005 10:59:37 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1Cl2hU-0003rB-JQ for ged-emacs-devel@m.gmane.org; Sun, 02 Jan 2005 05:11:04 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1Cl2gi-0003pZ-1F for emacs-devel@gnu.org; Sun, 02 Jan 2005 05:10:18 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1Cl2gf-0003p8-Bz for emacs-devel@gnu.org; Sun, 02 Jan 2005 05:10:14 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1Cl2gc-0003p2-VB for emacs-devel@gnu.org; Sun, 02 Jan 2005 05:10:12 -0500 Original-Received: from [64.21.80.18] (helo=shark.dnsvelocity.com) by monty-python.gnu.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.34) id 1Cl2VJ-0000sY-MN for emacs-devel@gnu.org; Sun, 02 Jan 2005 04:58:29 -0500 Original-Received: from stupidch by shark.dnsvelocity.com with local (Exim 4.43) id 1Cl2VC-0005I5-N9 for emacs-devel@gnu.org; Sun, 02 Jan 2005 04:58:23 -0500 Original-Received: from 220.255.95.147 ([220.255.95.147]) (SquirrelMail authenticated user cyd@stupidchicken.com); by www.stupidchicken.com with HTTP; Sun, 2 Jan 2005 04:58:22 -0500 (EST) Original-To: emacs-devel@gnu.org User-Agent: SquirrelMail/1.4.3a X-Mailer: SquirrelMail/1.4.3a X-Priority: 3 (Normal) Importance: Normal X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - shark.dnsvelocity.com X-AntiAbuse: Original Domain - gnu.org X-AntiAbuse: Originator/Caller UID/GID - [32675 33085] / [47 12] X-AntiAbuse: Sender Address Domain - shark.dnsvelocity.com X-Source: /usr/local/cpanel/3rdparty/bin/php X-Source-Args: /usr/local/cpanel/3rdparty/bin/php /usr/local/cpanel/base/3rdparty/squirrelmail/src/compose.php X-Source-Dir: stupidchicken.com:/base/3rdparty/squirrelmail/src 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: main.gmane.org gmane.emacs.devel:31681 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:31681 AFAICT, the fix suggested by SAITO Takuya in FOR-RELEASE is correct. It is quite a simple patch. ** line-spacing and Electric-pop-up-window From: SAITO Takuya Date: Mon, 31 May 2004 02:08:10 +0900 (JST) Electric-pop-up-window does not work well if truncate long lines disabled and/or `line-spacing' is set to positive integer. For example, start emacs -Q --line-spacing 1, and type M-` . Then, the last line of *Completions* buffer is not visible. fit-window-to-buffer works well for me, so I guess Electric-pop-up-window can use it.