• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Japanese translation of message catalog for Sawfish Window-Manager


Commit MetaInfo

Révision44b75cd5ae433fac07fa9ffb6285883095b5abf6 (tree)
l'heure2002-10-01 16:07:27
AuteurJohn Harper <jsh@unfa...>
CommiterJohn Harper

Message de Log

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)

Change Summary

Modification

--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -2,6 +2,11 @@
22
33 * merging from HEAD:
44
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+
510 2002-09-29 John Harper <jsh@unfactored.org>
611
712 * sawmill.h, fonts.c: refactored some of the font loading code
--- a/src/property-cache.c
+++ b/src/property-cache.c
@@ -46,7 +46,7 @@ property_cache_ref (repv id, repv prop)
4646 u_int h, i;
4747
4848 if (cache_vec == rep_NULL)
49- return Qnil;
49+ return rep_NULL;
5050
5151 h = CACHE_HASH (id, prop) * CACHE_ASSOC;
5252