From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Juanma Barranquero Newsgroups: gmane.emacs.devel Subject: Error displaying a frame modified with (tool-bar-lines . 0) Date: Tue, 25 Mar 2014 13:45:00 +0100 Message-ID: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1395751542 6411 80.91.229.3 (25 Mar 2014 12:45:42 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 25 Mar 2014 12:45:42 +0000 (UTC) To: Emacs developers Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Mar 25 13:45:53 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 1WSQjl-0000BT-SG for ged-emacs-devel@m.gmane.org; Tue, 25 Mar 2014 13:45:49 +0100 Original-Received: from localhost ([::1]:41542 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WSQjl-00015i-A5 for ged-emacs-devel@m.gmane.org; Tue, 25 Mar 2014 08:45:49 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:48737) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WSQjf-00014D-AV for emacs-devel@gnu.org; Tue, 25 Mar 2014 08:45:44 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WSQjd-0001Dl-Uz for emacs-devel@gnu.org; Tue, 25 Mar 2014 08:45:43 -0400 Original-Received: from mail-yh0-x231.google.com ([2607:f8b0:4002:c01::231]:37060) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WSQjd-0001Db-9G for emacs-devel@gnu.org; Tue, 25 Mar 2014 08:45:41 -0400 Original-Received: by mail-yh0-f49.google.com with SMTP id z6so343226yhz.36 for ; Tue, 25 Mar 2014 05:45:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:from:date:message-id:subject:to:content-type; bh=7D2/8bolvSoq0vOw8XTuPGhkGRb3cRXhetGvFzY0FU4=; b=OXxzL2zmi2IBs66ZIEeh+jKsgOY/8ipkaITYO0OLc48sJwS82ftrXFxwMjoMaFu48f XFjH9fAyxzMW4HXA3PoNsT79QK7taXbGQ9m1lkRTfMBQUhHFFcSJx9uRzRTll9IJeZYf sO09qIQdjANXYobKRl0SgNBjprxSMI3uwdAc9BzsVwaDzxNoNmh7aYAhI9SkdHXdv4H2 Y6gJVdx/Gbhiwrd2i5PDZUKX2jRLOqyX5Xlzj7L3+ze+Ky/o3ghHNKZlKYk9NXP0WAWO /OSwsvro/J+ORqQBHLLextaK2guP6x6Ek/WMTXKNe9m8uI5pmMnKVMMBimvC6bqzjoyB oiaw== X-Received: by 10.236.27.108 with SMTP id d72mr651960yha.137.1395751540750; Tue, 25 Mar 2014 05:45:40 -0700 (PDT) Original-Received: by 10.170.163.3 with HTTP; Tue, 25 Mar 2014 05:45:00 -0700 (PDT) X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:4002:c01::231 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:170962 Archived-At: After much back and forth, bug#17046 has been determined to be that running emacs -Q -l bug.el with bug.el: ;;; bug.el (let* ((default-frame-alist nil) (frame (make-frame '((width . 80) (height . 20)))) (lines (frame-parameter frame 'tool-bar-lines))) (discard-input) (read-event nil nil 2) (modify-frame-parameters frame '((tool-bar-lines . 0) (width . 60) (height . 25))) (modify-frame-parameters frame `((tool-bar-lines . ,lines)))) ;;, end causes the frame to be redisplayed incorrectly (the trigger being the (tool-bar-lines .0) parameter: http://debbugs.gnu.org/cgi/bugreport.cgi?msg=26;filename=emacs-sshot.png;att=1;bug=17046 This happens on a Ubuntu 13.10: GNU Emacs 24.3.50.2 (i686-pc-linux-gnu, GTK+ Version 3.8.6) of 2014-03-14 on poulenc Repository revision: 116756 rudalics gmx.at-20140314103846-ytcz7b30ocmzo8jh Windowing system distributor `The X.Org Foundation', version 11.0.11405000 System Description: Ubuntu 13.10 Important settings: value of $LANG: en_GB.UTF-8 locale-coding-system: utf-8-unix Anyone knowledgeable about this kind of issue is welcome to drop by bug#17046. TIA, J