From 1aaf5919aa5709fa6cfa710652143635a68bdbfb Mon Sep 17 00:00:00 2001 From: pjk Date: Thu, 13 May 2004 18:57:57 +0000 Subject: [PATCH] Do not kill trailing spaces - breaks data list list where the last variable(s) on a line are empty --- src/dfm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dfm.c b/src/dfm.c index 9f62029466..910bb32c16 100644 --- a/src/dfm.c +++ b/src/dfm.c @@ -461,8 +461,8 @@ read_record (struct file_handle *h) reason, I'm sure. I'm too scared to eliminate this code. */ if (handle_get_mode (h) == MODE_TEXT) { - while (ext->len && isspace ((unsigned char) ext->line[ext->len - 1])) - ext->len--; + /* while (ext->len && isspace ((unsigned char) ext->line[ext->len - 1])) + ext->len--;*/ /* Convert tabs to spaces. */ -- 2.30.2