Mercurial > emacs
changeset 89554:15da46f6f0ac
(face_numeric_value): Declare dim size_t.
(Finternal_lisp_face_equal_p): Remove unused f.
author | Dave Love <fx@gnu.org> |
---|---|
date | Mon, 29 Sep 2003 18:15:16 +0000 |
parents | 7b8489e2f8f8 |
children | 483f5ce6ca7a |
files | src/xfaces.c |
diffstat | 1 files changed, 2 insertions(+), 12 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xfaces.c Mon Sep 29 18:08:13 2003 +0000 +++ b/src/xfaces.c Mon Sep 29 18:15:16 2003 +0000 @@ -1376,7 +1376,7 @@ color_def->green = 0; if (*color_name) - status = tty_lookup_color (f, build_string (color_name), color_def, 0); + status = tty_lookup_color (f, build_string (color_name), color_def, NULL); if (color_def->pixel == FACE_TTY_DEFAULT_COLOR && *color_name) { @@ -2108,7 +2108,7 @@ static INLINE int face_numeric_value (table, dim, symbol) struct table_entry *table; - int dim; + size_t dim; Lisp_Object symbol; { struct table_entry *p = face_value (table, dim, symbol); @@ -4953,18 +4953,8 @@ Lisp_Object face1, face2, frame; { int equal_p; - struct frame *f; Lisp_Object lface1, lface2; - if (EQ (frame, Qt)) - f = NULL; - else - /* Don't use check_x_frame here because this function is called - before X frames exist. At that time, if FRAME is nil, - selected_frame will be used which is the frame dumped with - Emacs. That frame is not an X frame. */ - f = frame_or_selected_frame (frame, 2); - lface1 = lface_from_face_name (NULL, face1, 1); lface2 = lface_from_face_name (NULL, face2, 1); equal_p = lface_equal_p (XVECTOR (lface1)->contents,