(load_char_attribute_maybe_cos): Return NULL instead of Qunbound as
authorMORIOKA Tomohiko <tomo.git@chise.org>
Thu, 2 May 2013 14:54:07 +0000 (23:54 +0900)
committerMORIOKA Tomohiko <tomo.git@chise.org>
Thu, 2 May 2013 14:54:07 +0000 (23:54 +0900)
the default value.

src/chartab.c

index ea4860f..3bc2604 100644 (file)
@@ -4224,13 +4224,13 @@ load_char_attribute_maybe_cos (Lisp_Char_Table* cit, Emchar ch)
       COS_object val;
 
       if (char_table_open_db_maybe (cit))
-       return Qunbound;
+       return NULL;
 
       val = char_table_get_db_cos (cit, ch);
 
       return val;
     }
-  return Qunbound;
+  return NULL;
 }
 #endif