Japanese translation of message catalog for Sawfish Window-Manager
Révision | 44b75cd5ae433fac07fa9ffb6285883095b5abf6 (tree) |
---|---|
l'heure | 2002-10-01 16:07:27 |
Auteur | John Harper <jsh@unfa...> |
Commiter | John Harper |
fixed silly bug (returning nil not null before cache is initialized)
* merging from HEAD:
2002-10-01 John Harper <jsh@unfactored.org>
* property-cache.c (property_cache_ref): fixed silly bug
(returning nil not null before cache is initialized)
@@ -2,6 +2,11 @@ | ||
2 | 2 | |
3 | 3 | * merging from HEAD: |
4 | 4 | |
5 | + 2002-10-01 John Harper <jsh@unfactored.org> | |
6 | + | |
7 | + * property-cache.c (property_cache_ref): fixed silly bug | |
8 | + (returning nil not null before cache is initialized) | |
9 | + | |
5 | 10 | 2002-09-29 John Harper <jsh@unfactored.org> |
6 | 11 | |
7 | 12 | * sawmill.h, fonts.c: refactored some of the font loading code |
@@ -46,7 +46,7 @@ property_cache_ref (repv id, repv prop) | ||
46 | 46 | u_int h, i; |
47 | 47 | |
48 | 48 | if (cache_vec == rep_NULL) |
49 | - return Qnil; | |
49 | + return rep_NULL; | |
50 | 50 | |
51 | 51 | h = CACHE_HASH (id, prop) * CACHE_ASSOC; |
52 | 52 |