From: Nikolas Garofil Date: Sat, 10 Apr 2010 18:06:04 +0000 (+0200) Subject: Bugfix: When the first line behind TEXT was a comment, the start of the second line... X-Git-Url: http://vcs.maemo.org/git/?p=monky;a=commitdiff_plain;h=f7dcc664d730dcead238b72bf4dab512717d2730 Bugfix: When the first line behind TEXT was a comment, the start of the second line wasn't parsed --- diff --git a/src/core.c b/src/core.c index acb41b0..32aa33a 100644 --- a/src/core.c +++ b/src/core.c @@ -1327,7 +1327,7 @@ int extract_variable_text_internal(struct text_object *retval, const char *const strfold(p, 1); } else if (*p == '#') { char c; - if (remove_comment(p, &c) && p > orig_p && c == '\n') { + if (remove_comment(p, &c) && p >= orig_p && c == '\n') { /* if remove_comment removed a newline, we need to 'back up' with p */ p--; }