From 6075c3ad0f97c1811e50e1dd7fc6ca15f5bcd310 Mon Sep 17 00:00:00 2001 Message-Id: <6075c3ad0f97c1811e50e1dd7fc6ca15f5bcd310.1714078386.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sun, 8 Oct 2000 09:50:11 +0000 Subject: [PATCH] (str_qword): Remove redundant definition of @STRF_QUOTE@. Organization: Straylight/Edgeware From: mdw --- str.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/str.c b/str.c index 711ccf7..9b5fc63 100644 --- a/str.c +++ b/str.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: str.c,v 1.4 2000/10/08 09:43:34 mdw Exp $ + * $Id: str.c,v 1.5 2000/10/08 09:50:11 mdw Exp $ * * Functions for hacking with strings * @@ -30,6 +30,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: str.c,v $ + * Revision 1.5 2000/10/08 09:50:11 mdw + * (str_qword): Remove redundant definition of @STRF_QUOTE@. + * * Revision 1.4 2000/10/08 09:43:34 mdw * New quoted string handling and simple pattern matching. * @@ -68,8 +71,6 @@ * single and double quotes protect whitespace. */ -#define STRF_QUOTE 1u - char *str_qword(char **pp, unsigned f) { char *p = *pp, *q, *qq; -- [mdw]