From 6b45fcf160fdc4cb78805835e05e25015fe4f973 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Fri, 26 Dec 2003 23:04:01 +0000 Subject: [PATCH] Undid previous change. --- io.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/io.c b/io.c index 16955a02..84a85bb3 100644 --- a/io.c +++ b/io.c @@ -406,8 +406,8 @@ int read_filesfrom_line(int fd, char *fname) } *s = '\0'; - /* Dump comments if reading locally. */ - if (!reading_remotely && (*fname == '#' || *fname == ';')) + /* Dump comments. */ + if (*fname == '#' || *fname == ';') goto start; return s - fname; -- 2.34.1