From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 3B4301389C0 for ; Tue, 12 Feb 2013 09:01:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1D3CE21C078; Tue, 12 Feb 2013 09:01:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8B7B721C07A for ; Tue, 12 Feb 2013 09:01:24 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7BB5B33E6AC for ; Tue, 12 Feb 2013 09:01:23 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id E4FFAE40A6 for ; Tue, 12 Feb 2013 09:01:19 +0000 (UTC) From: "Sven Eden" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sven Eden" Message-ID: <1360659584.bda105db8356b122435717099adccfe3e9b9e6b0.yamakuzure@gentoo> Subject: [gentoo-commits] proj/ufed:master commit in: / X-VCS-Repository: proj/ufed X-VCS-Files: ufed-curses-globals.c ufed-curses-globals.h X-VCS-Directories: / X-VCS-Committer: yamakuzure X-VCS-Committer-Name: Sven Eden X-VCS-Revision: bda105db8356b122435717099adccfe3e9b9e6b0 X-VCS-Branch: master Date: Tue, 12 Feb 2013 09:01:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 1e053908-f3ac-4584-9f36-528c60bbb5bc X-Archives-Hash: 753e22ca4feb845deaa5cd5a7512e87d commit: bda105db8356b122435717099adccfe3e9b9e6b0 Author: Sven Eden gmx de> AuthorDate: Tue Feb 12 08:59:44 2013 +0000 Commit: Sven Eden gmx de> CommitDate: Tue Feb 12 08:59:44 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/ufed.git;a=commit;h=bda105db Added "fayt" (Input search string) to the global area. --- ufed-curses-globals.c | 1 + ufed-curses-globals.h | 1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/ufed-curses-globals.c b/ufed-curses-globals.c index d43c4f1..dc9a38a 100644 --- a/ufed-curses-globals.c +++ b/ufed-curses-globals.c @@ -14,6 +14,7 @@ eMask e_mask = eMask_unmasked; eOrder e_order = eOrder_left; eScope e_scope = eScope_all; eState e_state = eState_all; +char* fayt = NULL; sListStats listStats = { 0, 0, 0, 0, 0, 0 }; sWindow window[wCount] = { { NULL, 0, 0, 5, 0 }, /* Top --- Top ---- */ diff --git a/ufed-curses-globals.h b/ufed-curses-globals.h index 263590b..514563e 100644 --- a/ufed-curses-globals.h +++ b/ufed-curses-globals.h @@ -15,6 +15,7 @@ extern eMask e_mask; extern eOrder e_order; extern eScope e_scope; extern eState e_state; +extern char* fayt; extern sListStats listStats; extern int minwidth; extern int topline;