From 70212bf28bd02ce46e7392664df89c58404a0f81 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 23 Nov 2002 15:40:40 +0000 Subject: [PATCH] Include gettext.h instead of . --- lib/rpmatch.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/rpmatch.c b/lib/rpmatch.c index 0988f07d04..02c2abdb88 100644 --- a/lib/rpmatch.c +++ b/lib/rpmatch.c @@ -1,6 +1,6 @@ /* Determine whether string value is affirmation or negative response according to current locale's data. - Copyright (C) 1996, 1998, 2000 Free Software Foundation, Inc. + Copyright (C) 1996, 1998, 2000, 2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -35,8 +35,8 @@ # include # endif # include -# include -# define _(Text) gettext (Text) +# include "gettext.h" +# define _(msgid) gettext (msgid) static int try (const char *response, const char *pattern, const int match, -- 2.47.2