From a3e23cb2996da0db01e77dd787a4c50c32841c6f Mon Sep 17 00:00:00 2001 From: Thomas Leonard Date: Tue, 23 May 2006 19:54:56 +0000 Subject: [PATCH] r4577: Any line in a .desktop file would be ignored if there was a blank line directly before it (Dennis Tomas). --- ROX-Filer/src/support.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ROX-Filer/src/support.c b/ROX-Filer/src/support.c index 19828d7d..7ca96950 100644 --- a/ROX-Filer/src/support.c +++ b/ROX-Filer/src/support.c @@ -1511,6 +1511,9 @@ find_key: { const char *nl; + if (next[1] == '\n') + continue; /* Cope with blank lines */ + next++; /* Skip newline */ if (next[0] == '[') -- 2.11.4.GIT