comparison src/xfaces.c @ 56063:109c0a603543

(face_attr_equal_p): Declare parameters.
author Andreas Schwab <schwab@suse.de>
date Sun, 13 Jun 2004 14:48:54 +0000
parents de4c259f651b
children 21c659556daa 38500c0c86ab
comparison
equal deleted inserted replaced
56062:60555326a82e 56063:109c0a603543
4910 all attributes are `equal'. Tries to be fast because this function 4910 all attributes are `equal'. Tries to be fast because this function
4911 is called quite often. */ 4911 is called quite often. */
4912 4912
4913 static INLINE int 4913 static INLINE int
4914 face_attr_equal_p (v1, v2) 4914 face_attr_equal_p (v1, v2)
4915 Lisp_Object v1, v2;
4915 { 4916 {
4916 /* Type can differ, e.g. when one attribute is unspecified, i.e. nil, 4917 /* Type can differ, e.g. when one attribute is unspecified, i.e. nil,
4917 and the other is specified. */ 4918 and the other is specified. */
4918 if (XTYPE (v1) != XTYPE (v2)) 4919 if (XTYPE (v1) != XTYPE (v2))
4919 return 0; 4920 return 0;