From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1SfSxj-0003nx-U8 for garchives@archives.gentoo.org; Fri, 15 Jun 2012 09:37:04 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 16D42E077C; Fri, 15 Jun 2012 09:36:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id DCCC8E078A for ; Fri, 15 Jun 2012 09:36:56 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 17EF61B4028 for ; Fri, 15 Jun 2012 09:36:55 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2170) id C04482004C; Fri, 15 Jun 2012 09:36:53 +0000 (UTC) From: "Bernard Cafarelli (voyageur)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, voyageur@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/geeqie/files: geeqie-1.0-up_path_restore.patch X-VCS-Repository: gentoo-x86 X-VCS-Files: geeqie-1.0-up_path_restore.patch X-VCS-Directories: media-gfx/geeqie/files X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli Content-Type: text/plain; charset=utf8 Message-Id: <20120615093653.C04482004C@flycatcher.gentoo.org> Date: Fri, 15 Jun 2012 09:36:53 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 82b32af5-5163-4d8e-ac08-dbc9b075c771 X-Archives-Hash: b6419b35004c2312562f9c24dc2086a5 voyageur 12/06/15 09:36:53 Added: geeqie-1.0-up_path_restore.patch Log: Fix scrolling when walking up directory list with upstream bugtracker p= atch, bug #420891. Switch to base eclass and PATCHES list =20 (Portage version: 2.2.0_alpha110/cvs/Linux x86_64) Revision Changes Path 1.1 media-gfx/geeqie/files/geeqie-1.0-up_path_restore.pa= tch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/geeqie/f= iles/geeqie-1.0-up_path_restore.patch?rev=3D1.1&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/geeqie/f= iles/geeqie-1.0-up_path_restore.patch?rev=3D1.1&content-type=3Dtext/plain Index: geeqie-1.0-up_path_restore.patch =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Index: src/view_dir_list.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- src/view_dir_list.c (revision 1917) +++ src/view_dir_list.c (working copy) @@ -309,7 +309,7 @@ base =3D remove_level_from_path(vd->dir_fd->path); if (strcmp(base, dir_fd->path) =3D=3D 0) { - old_path =3D g_strdup(vd->dir_fd->name); + old_path =3D g_strdup(vd->dir_fd->path); } g_free(base); } @@ -329,7 +329,7 @@ while (work && !found) { FileData *fd =3D work->data; - if (strcmp(old_path, fd->name) =3D=3D 0) found =3D fd; + if (strcmp(old_path, fd->path) =3D=3D 0) found =3D fd; work =3D work->next; } =20