* grub-core/gettext/gettext.c: Mostly rewritten to avoid using

lists (by always binsearching), improve caching (cache strings
	used for binsearch, not only results), improve
	maintainability (by using more structured binary search) and correct
	error handling.
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2012-02-04 13:35:17 +01:00
parent 1e5ec32f2d
commit c39992a436
2 changed files with 262 additions and 248 deletions

View file

@ -1,3 +1,11 @@
2012-02-04 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/gettext/gettext.c: Mostly rewritten to avoid using
lists (by always binsearching), improve caching (cache strings
used for binsearch, not only results), improve
maintainability (by using more structured binary search) and correct
error handling.
2012-02-04 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/script/execute.c (grub_script_return): Fix warning.