Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/html/_static/searchtools.js

    r5547430 rada37fa  
    55 * Sphinx JavaScript utilities for the full-text search.
    66 *
    7  * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS.
     7 * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS.
    88 * :license: BSD, see LICENSE for details.
    99 *
     
    329329
    330330    for (var prefix in objects) {
    331       for (var iMatch = 0; iMatch != objects[prefix].length; ++iMatch) {
    332         var match = objects[prefix][iMatch];
    333         var name = match[4];
     331      for (var name in objects[prefix]) {
    334332        var fullname = (prefix ? prefix + '.' : '') + name;
    335333        var fullnameLower = fullname.toLowerCase()
     
    345343            score += Scorer.objPartialMatch;
    346344          }
     345          var match = objects[prefix][name];
    347346          var objname = objnames[match[1]][2];
    348347          var title = titles[match[0]];
Note: See TracChangeset for help on using the changeset viewer.