Merge with 0.5.

This commit is contained in:
Georg Brandl 2008-12-06 09:00:22 +01:00
commit 79f9948090
2 changed files with 4 additions and 1 deletions

View File

@ -26,6 +26,9 @@ Release 0.5.1 (in development)
* Don't crash on empty index entries, only emit a warning.
* Fix a typo in the search JavaScript code, leading to unusable
search function in some setups.
Release 0.5 (Nov 23, 2008) -- Birthday release!
===============================================

View File

@ -239,7 +239,7 @@ var Search = {
},
hasIndex : function() {
return self._index !== null;
return this._index !== null;
},
deferQuery : function(query) {