From f6f7a119663c922b7ab245547645a06897b7a129 Mon Sep 17 00:00:00 2001 From: Trevor Daniels Date: Mon, 30 Aug 2010 23:53:38 +0100 Subject: [PATCH] Scripts: bug fix * ref_check.py avoid interpreting @code as @c at start of line --- scripts/auxiliar/ref_check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/auxiliar/ref_check.py b/scripts/auxiliar/ref_check.py index 48bc4d6e10..4b4e51f0bb 100755 --- a/scripts/auxiliar/ref_check.py +++ b/scripts/auxiliar/ref_check.py @@ -111,7 +111,7 @@ class File: if words[0] == "@end" and (words[1].find("ignore") >= 0 or words[1].find("macro") >= 0): skip = False - if not skip and words[0].find("@c") < 0: + if not skip and words[0] != "@c": if words[0].find("@defManual") >= 0: # Manual definition found - extract manual name and refManual string manualName = words[1] -- 2.39.2