lib-src/etags.c (process_file_name) [!DOS_NT]: Use "r", not "rb" in the
call to 'popen'.
+2015-02-19 Eli Zaretskii <eliz@gnu.org>
+
+ * etags.c (process_file_name) [!DOS_NT]: Use "r", not "rb" in the
+ call to 'popen'. (Bug#19735)
+
2015-02-13 Paul Eggert <eggert@cs.ucla.edu>
Better support for future plugins
if (real_name == compressed_name)
{
char *cmd = concat (compr->command, " ", real_name);
+
+ /* Unix implementations of 'popen' generally don't support "rb", whereas
+ DOS_NT needs it. */
+#ifdef DOS_NT
inf = popen (cmd, "rb");
+#else
+ inf = popen (cmd, "r");
+#endif
free (cmd);
}
else