From owner-svn-ports-head@FreeBSD.ORG Thu Mar 13 23:10:05 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D2029940; Thu, 13 Mar 2014 23:10:05 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A4A3EC46; Thu, 13 Mar 2014 23:10:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s2DNA5dN040528; Thu, 13 Mar 2014 23:10:05 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s2DNA58M040524; Thu, 13 Mar 2014 23:10:05 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201403132310.s2DNA58M040524@svn.freebsd.org> From: John Marino Date: Thu, 13 Mar 2014 23:10:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r348141 - head/devel/gps/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Mar 2014 23:10:05 -0000 Author: marino Date: Thu Mar 13 23:10:04 2014 New Revision: 348141 URL: http://svnweb.freebsd.org/changeset/ports/348141 QAT: https://qat.redports.org/buildarchive/r348141/ Log: devel/gps: More tweaks to prepare for gcc49 GCC had a couple of "ambiguous" complaints as well as an overlapping variable used for both in and out. Fix these nits before gcc49 comes in. Added: head/devel/gps/files/patch-src__editor_src_src__editor__buffer.adb (contents, props changed) head/devel/gps/files/patch-src__editor_src_src__editor__view.adb (contents, props changed) Added: head/devel/gps/files/patch-src__editor_src_src__editor__buffer.adb ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/gps/files/patch-src__editor_src_src__editor__buffer.adb Thu Mar 13 23:10:04 2014 (r348141) @@ -0,0 +1,11 @@ +--- src_editor/src/src_editor_buffer.adb.orig 2012-09-28 15:42:43.000000000 +0000 ++++ src_editor/src/src_editor_buffer.adb +@@ -5820,7 +5820,7 @@ package body Src_Editor_Buffer is + + while Result + and then not Ends_Line (Iter) +- and then Is_Space (Get_Char (Iter)) ++ and then Glib.Unicode.Is_Space (Gtk.Text_Iter.Get_Char (Iter)) + loop + Forward_Char (Iter, Result); + Offset := Offset + 1; Added: head/devel/gps/files/patch-src__editor_src_src__editor__view.adb ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/gps/files/patch-src__editor_src_src__editor__view.adb Thu Mar 13 23:10:04 2014 (r348141) @@ -0,0 +1,19 @@ +--- src_editor/src/src_editor_view.adb.orig 2012-07-02 09:23:20.000000000 +0000 ++++ src_editor/src/src_editor_view.adb +@@ -1789,6 +1789,7 @@ package body Src_Editor_View is + is + View : constant Source_View := Source_View (Widget); + Dummy_Gint : Gint; ++ Dummy2_Gint : Gint; + W, H, D : Gint; + Button_Y : Gint; + Lower, Upper : Gdouble; +@@ -1807,7 +1808,7 @@ package body Src_Editor_View is + Button_Y := Gint (Get_Y (Event)); + + Get_Geometry +- (Get_Window (View.Area), Dummy_Gint, Dummy_Gint, W, H, D); ++ (Get_Window (View.Area), Dummy_Gint, Dummy2_Gint, W, H, D); + + Adj := Get_Vadjustment (View.Scroll); + Lower := Get_Lower (Adj);