From 429162ba11e58758e5e4ac4f03239891fc3e189c Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Tue, 12 Dec 2017 16:04:02 +0300 Subject: Merge with latest upstream package version (master branch) --- libpkgconf/argvsplit.c | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) (limited to 'libpkgconf/argvsplit.c') diff --git a/libpkgconf/argvsplit.c b/libpkgconf/argvsplit.c index 4e40327..4553154 100644 --- a/libpkgconf/argvsplit.c +++ b/libpkgconf/argvsplit.c @@ -89,18 +89,8 @@ pkgconf_argv_split(const char *src, int *argc, char ***argv) } else { - /* - * There is no reason to keep space character escaped in fragment - * objects, especially given that other characters are unescaped (issue - * #139 is reported). - * - * Update: as a part of the issue #140 fix the backslash is now - * escaped as well. - */ - /* - if (isspace((unsigned int) *src_iter) || *src_iter == '\\') + if (*src_iter == '\\') *dst_iter++ = '\\'; - */ *dst_iter++ = *src_iter; } -- cgit v1.1