* lib-src/etags.c (process_file_name) [MSDOS || DOS_NT]: Fix
quoting of decompression shell command for MS-Windows/MS-DOS.
inf = NULL;
else
{
+#if MSDOS || defined (DOS_NT)
+ char *cmd1 = concat (compr->command, " \"", real_name);
+ char *cmd = concat (cmd1, "\" > ", tmp_name);
+#else
char *cmd1 = concat (compr->command, " '", real_name);
char *cmd = concat (cmd1, "' > ", tmp_name);
+#endif
free (cmd1);
int tmp_errno;
if (system (cmd) == -1)