From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: [jbw@macs.hw.ac.uk: window-min-height not obeying its documentation in Emacs 22.1] Date: Tue, 03 Jul 2007 00:24:31 -0400 Message-ID: Reply-To: rms@gnu.org NNTP-Posting-Host: lo.gmane.org Content-Type: text/plain; charset=ISO-8859-15 X-Trace: sea.gmane.org 1183436836 27875 80.91.229.12 (3 Jul 2007 04:27:16 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 3 Jul 2007 04:27:16 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Jul 03 06:27:12 2007 connect(): Connection refused Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1I5Zyp-0007bG-V7 for ged-emacs-devel@m.gmane.org; Tue, 03 Jul 2007 06:27:12 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1I5Zyp-00075A-Dt for ged-emacs-devel@m.gmane.org; Tue, 03 Jul 2007 00:27:11 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1I5ZwI-0003xB-JA for emacs-devel@gnu.org; Tue, 03 Jul 2007 00:24:34 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1I5ZwH-0003vp-Pc for emacs-devel@gnu.org; Tue, 03 Jul 2007 00:24:34 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1I5ZwH-0003vb-Il for emacs-devel@gnu.org; Tue, 03 Jul 2007 00:24:33 -0400 Original-Received: from fencepost.gnu.org ([140.186.70.10]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1I5ZwG-00064h-Vw for emacs-devel@gnu.org; Tue, 03 Jul 2007 00:24:33 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.60) (envelope-from ) id 1I5ZwF-0007ga-9j; Tue, 03 Jul 2007 00:24:31 -0400 X-detected-kernel: Linux 2.6, seldom 2.4 (older, 4) 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: news.gmane.org gmane.emacs.devel:74222 Archived-At: Would someone please DTRT then ack? ------- Start of forwarded message ------- X-Spam-Status: No, score=0.0 required=5.0 tests=UNPARSEABLE_RELAY autolearn=failed version=3.1.0 From: Joe Wells To: bug-gnu-emacs@gnu.org Date: Mon, 02 Jul 2007 12:12:42 +0100 Subject: window-min-height not obeying its documentation in Emacs 22.1 I have window-min-height set to 4. According to its documentation, any window whose height is less than 4 will be deleted. This is false when the value split-height-threshold is small enough. The following script reproduces the bug (at least with my screen height). - ---------------------------------------------------------------------- #!/bin/sh ~/local2/bin/emacs --quick --eval '(progn (split-window-vertically) (temp-buffer-resize-mode 1) (setq window-min-height 4) (setq split-height-threshold 4) (describe-bindings))' # # You will now see a window that is 1 line tall and is missing its # mode line. This should be impossible according to the documentation # of window-min-height. - ---------------------------------------------------------------------- This may just be a documentation bug. But I would really like for window-min-height to obey its documentation, as I get very confused by windows that are missing their mode lines because they are only 1 line tall. Joe - ---------------------------------------------------------------------- In GNU Emacs 22.1.1 (i686-pc-linux-gnu, GTK+ Version 2.8.20) of 2007-06-27 on artemis Windowing system distributor `The X.Org Foundation', version 11.0.70000000 configured using `configure '--prefix=/home/jbw/local2' '--enable-debug' '--disable-nls' '--with-x-toolkit=gtk' 'CFLAGS=-O0 -g3 -ggdb'' Important settings: value of $LC_ALL: nil value of $LC_COLLATE: nil value of $LC_CTYPE: en_US.UTF-8 value of $LC_MESSAGES: nil value of $LC_MONETARY: nil value of $LC_NUMERIC: nil value of $LC_TIME: jbw value of $LANG: nil locale-coding-system: utf-8 default-enable-multibyte-characters: t _______________________________________________ bug-gnu-emacs mailing list bug-gnu-emacs@gnu.org http://lists.gnu.org/mailman/listinfo/bug-gnu-emacs ------- End of forwarded message -------