Now shows line number for unresolved \R cross-references

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2386 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2003-03-28 18:32:16 +00:00
parent 0e72470909
commit 7212948929
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View file

@ -78,7 +78,7 @@ void gen_citations(paragraph * source, keywordlist * kl)
* Scan for keyword references.
*/
for (ptr = para->words; ptr; ptr = ptr->next) {
if (ptr->type == word_UpperXref || ptr->type == word_LowerXref)
if (ptr->type == word_UpperXref || ptr->type == word_LowerXref || ptr->type == word_FreeTextXref)
cite_biblio(kl, ptr->text, ptr->fpos);
}
}