# HG changeset patch # User Stefan Monnier # Date 1088624118 0 # Node ID 075ad6932e066a66eafee8082d3648b449e73c0a # Parent 9edd102571f91a19de0def9b121e69e5fd98d501 (x_supports_face_attributes_p) (Fdisplay_supports_face_attributes_p): YAILOM. (tty_supports_face_attributes_p): Remove unused var `i'. diff -r 9edd102571f9 -r 075ad6932e06 src/xfaces.c --- a/src/xfaces.c Wed Jun 30 19:34:49 2004 +0000 +++ b/src/xfaces.c Wed Jun 30 19:35:18 2004 +0000 @@ -5848,7 +5848,7 @@ face = FACE_FROM_ID (f, lookup_face (f, merged_attrs, 0, 0)); if (! face) - signal_error ("cannot make face", 0); + error ("cannot make face"); /* If the font is the same, then not supported. */ if (face->font == def_face->font) @@ -5883,7 +5883,7 @@ Lisp_Object *attrs; struct face *def_face; { - int weight, i; + int weight; Lisp_Object val, fg, bg; XColor fg_tty_color, fg_std_color; XColor bg_tty_color, bg_std_color; @@ -6105,7 +6105,7 @@ if (def_face == NULL) { if (! realize_basic_faces (f)) - signal_error ("Cannot realize default face", 0); + error ("Cannot realize default face"); def_face = FACE_FROM_ID (f, DEFAULT_FACE_ID); }