Skip to content

Commit e5446b8

Browse files
committed
Fix keyword index generation for qch
Previously due this bug all C++ context searches were pointing to "cpp" index page, C searched to "c" index page. This fix brings back context search (F1) functionality that was broken for last 2014 qch releases. This bug was introduced by 9b020fd rewrite of index generation from XSL to Python.
1 parent 93299a9 commit e5446b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index2devhelp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def process_item_hook(self, el, full_name, full_link):
6161
global out_f, rel_link
6262
out_f.write('<keyword type="' + xml_escape(self.get_mark(el))
6363
+ '" name="' + xml_escape(full_name)
64-
+ '" link="' + xml_escape(rel_link) + '"/>\n')
64+
+ '" link="' + xml_escape(full_link) + '"/>\n')
6565
IndexTransform.process_item_hook(self, el, full_name, full_link)
6666

6767
out_f.write('<?xml version="1.0"?>\n'

0 commit comments

Comments
 (0)