From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Jan D." Newsgroups: gmane.emacs.devel Subject: Addition to emacsbug.el Date: Wed, 27 Oct 2004 11:37:34 +0200 Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Message-ID: <417F6C5E.5070801@swipnet.se> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1098869885 23200 80.91.229.6 (27 Oct 2004 09:38:05 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 27 Oct 2004 09:38:05 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Oct 27 11:37:54 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1CMkFe-0003SV-00 for ; Wed, 27 Oct 2004 11:37:54 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CMkNO-0003Ua-1N for ged-emacs-devel@m.gmane.org; Wed, 27 Oct 2004 05:45:54 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1CMkNB-0003UH-SX for emacs-devel@gnu.org; Wed, 27 Oct 2004 05:45:42 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1CMkNB-0003Tq-2Q for emacs-devel@gnu.org; Wed, 27 Oct 2004 05:45:41 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CMkNA-0003Tm-TV for emacs-devel@gnu.org; Wed, 27 Oct 2004 05:45:40 -0400 Original-Received: from [195.54.107.73] (helo=mxfep02.bredband.com) by monty-python.gnu.org with esmtp (Exim 4.34) id 1CMkFP-000308-8M for emacs-devel@gnu.org; Wed, 27 Oct 2004 05:37:39 -0400 Original-Received: from coolsville.localdomain ([83.226.180.220] [83.226.180.220]) by mxfep02.bredband.com with ESMTP id <20041027093738.EBI44.mxfep02.bredband.com@coolsville.localdomain> for ; Wed, 27 Oct 2004 11:37:38 +0200 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.3) Gecko/20040916 X-Accept-Language: en-us, en Original-To: emacs devel 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: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:29030 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:29030 Hello. I'm working on the GTK scroll bars again, trying to get overscrolling to work as in the native scroll bars. But I see that depending on what GTK version and what X server version I run on (specifically with DAMAGE extension or not), I sometimes get different behaviour. Therefore I would like to have this information inserted by report-emacs-bug. The GTK version is already in emacs-version, so I propose this patch to emacsbug.el: *** emacsbug.el.~1.61.~ 2003-10-05 15:51:43.000000000 +0200 --- emacsbug.el 2004-10-27 11:34:54.000000000 +0200 *************** *** 128,133 **** --- 128,136 ---- (insert "\n\n\n") (insert "In " (emacs-version) "\n") + (if (fboundp 'x-server-vendor) + (insert "X vendor `" (x-server-vendor) "', vendor version " + (format "%d" (nth 2 (x-server-version))) "\n")) (if (and system-configuration-options (not (equal system-configuration-options ""))) (insert "configured using `configure " Is this OK? Jan D.