From da604d355a3dcf32f16985a691a5f8e649710dd9 Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Fri, 12 Aug 2011 16:37:27 +0000 Subject: [PATCH] be more precise in the comment --- Settings.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Settings.c b/Settings.c index c87bf2af..ee9bafb6 100644 --- a/Settings.c +++ b/Settings.c @@ -151,9 +151,8 @@ bool Settings_write(Settings* this) { if (fd == NULL) { return false; } - fprintf(fd, "# Beware! This file is rewritten every time htop exits.\n"); + fprintf(fd, "# Beware! This file is rewritten by htop when settings are changed in the interface.\n"); fprintf(fd, "# The parser is also very primitive, and not human-friendly.\n"); - fprintf(fd, "# (I know, it's in the todo list).\n"); fprintf(fd, "fields="); for (int i = 0; this->pl->fields[i]; i++) { // This "-1" is for compatibility with the older enum format.